Added Reseller view
This commit is contained in:
parent
1821810570
commit
0ce640c283
18
app/Http/Controllers/ResellerServicesController.php
Normal file
18
app/Http/Controllers/ResellerServicesController.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Auth;
|
||||
|
||||
class ResellerServicesController extends Controller
|
||||
{
|
||||
public function agents()
|
||||
{
|
||||
return ['data'=>Auth::user()->all_agents()->values()];
|
||||
}
|
||||
|
||||
public function accounts()
|
||||
{
|
||||
return ['data'=>Auth::user()->all_accounts()->values()];
|
||||
}
|
||||
}
|
@ -15,13 +15,13 @@ class UserHomeController extends Controller
|
||||
{
|
||||
switch (Auth::user()->role()) {
|
||||
case 'Customer':
|
||||
return View('home');
|
||||
return View('userhome',['o'=>Auth::user()]);
|
||||
|
||||
case 'Reseller':
|
||||
break;
|
||||
return View('resellerhome',['o'=>Auth::user()]);
|
||||
|
||||
case 'Wholesaler':
|
||||
break;
|
||||
return View('resellerhome',['o'=>Auth::user()]);
|
||||
|
||||
default:
|
||||
abort(500,'Unknown role: ',Auth::user()->role());
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
namespace App\Http;
|
||||
|
||||
use App\Http\Middleware\SetSite;
|
||||
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
||||
|
||||
class Kernel extends HttpKernel
|
||||
@ -62,6 +61,7 @@ class Kernel extends HttpKernel
|
||||
'can' => \Illuminate\Auth\Middleware\Authorize::class,
|
||||
'demoMode' => \Spatie\DemoMode\DemoMode::class,
|
||||
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
|
||||
'reseller' => \App\Http\Middleware\Reseller::class,
|
||||
'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
|
||||
'theme' => \Igaster\LaravelTheme\Middleware\setTheme::class,
|
||||
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
|
||||
|
19
app/Http/Middleware/Reseller.php
Normal file
19
app/Http/Middleware/Reseller.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Closure;
|
||||
|
||||
class Reseller
|
||||
{
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
if (! in_array(Auth::user()->role(),['Wholesaler','Reseller']))
|
||||
{
|
||||
abort(303,'Not Reseller');
|
||||
|
||||
} else
|
||||
return $next($request);
|
||||
}
|
||||
}
|
@ -9,6 +9,15 @@ class Account extends Model
|
||||
protected $table = 'ab_account';
|
||||
public $timestamps = FALSE;
|
||||
|
||||
protected $appends = [
|
||||
'active_display',
|
||||
];
|
||||
protected $visible = [
|
||||
'id',
|
||||
'company',
|
||||
'active_display',
|
||||
];
|
||||
|
||||
/**
|
||||
* Return the country the user belongs to
|
||||
*/
|
||||
@ -26,4 +35,14 @@ class Account extends Model
|
||||
{
|
||||
return $this->belongsTo(\App\User::class);
|
||||
}
|
||||
|
||||
public function getCompanyAttribute($value)
|
||||
{
|
||||
return $value ? $value : $this->user->SurFirstName;
|
||||
}
|
||||
|
||||
public function getActiveDisplayAttribute($value)
|
||||
{
|
||||
return sprintf('<span class="btn-sm btn-block btn-%s text-center">%s</span>',$this->active ? 'primary' : 'danger',$this->active ? 'Active' : 'Inactive');
|
||||
}
|
||||
}
|
88
app/User.php
88
app/User.php
@ -14,6 +14,7 @@ class User extends Authenticatable
|
||||
use HasApiTokens,Notifiable,UserSwitch;
|
||||
|
||||
protected $dates = ['created_at','updated_at','last_access'];
|
||||
protected $with = ['accounts'];
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
@ -33,17 +34,28 @@ class User extends Authenticatable
|
||||
'password', 'remember_token',
|
||||
];
|
||||
|
||||
public function accounts()
|
||||
protected $appends = [
|
||||
'surfirstname',
|
||||
'user_id_url',
|
||||
];
|
||||
protected $visible = [
|
||||
'id',
|
||||
'surfirstname',
|
||||
'level',
|
||||
'user_id_url',
|
||||
];
|
||||
|
||||
public function accounts()
|
||||
{
|
||||
return $this->hasMany(Models\Account::class);
|
||||
}
|
||||
|
||||
protected function agents() {
|
||||
return $this->hasMany(static::class,'parent_id','id');
|
||||
public function agents() {
|
||||
return $this->hasMany(static::class,'parent_id','id')->with('agents');
|
||||
}
|
||||
|
||||
protected function clients() {
|
||||
return $this->hasMany(\App\User::class);
|
||||
public function clients() {
|
||||
return $this->hasMany(static::class,'parent_id','id')->with('clients');
|
||||
}
|
||||
|
||||
public function invoices()
|
||||
@ -80,6 +92,11 @@ class User extends Authenticatable
|
||||
return sprintf('%s %s',$this->firstname,$this->lastname);
|
||||
}
|
||||
|
||||
public function getSurFirstNameAttribute()
|
||||
{
|
||||
return sprintf('%s, %s',$this->lastname,$this->firstname);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a Carbon Date if it has a value.
|
||||
*
|
||||
@ -92,6 +109,7 @@ class User extends Authenticatable
|
||||
if (! is_null($value))
|
||||
return new Carbon($value);
|
||||
}
|
||||
|
||||
public function getInvoicesDueAttribute()
|
||||
{
|
||||
return $this->invoices
|
||||
@ -124,33 +142,73 @@ class User extends Authenticatable
|
||||
return $this->full_name;
|
||||
}
|
||||
|
||||
public function getUserIdAttribute()
|
||||
{
|
||||
return sprintf('%02s-%04s',$this->site_id,$this->id);
|
||||
}
|
||||
|
||||
public function getUserIdUrlAttribute()
|
||||
{
|
||||
return sprintf('<a href="/u/account/view/%s">%s</a>',$this->id,$this->user_id);
|
||||
}
|
||||
|
||||
public function scopeActive()
|
||||
{
|
||||
return $this->where('active',TRUE);
|
||||
}
|
||||
|
||||
// List all the agents, including agents of agents
|
||||
public function all_agents()
|
||||
public function all_agents($level=0)
|
||||
{
|
||||
$result = collect();
|
||||
|
||||
foreach ($this->agents()->orderBy('id')->get() as $o)
|
||||
foreach ($this->agents as $o)
|
||||
{
|
||||
if (! $o->active)
|
||||
if (! $o->active OR ! $o->agents->count())
|
||||
continue;
|
||||
|
||||
$result->push($o->all_agents());
|
||||
$result->push($this);
|
||||
$o->level = $level;
|
||||
|
||||
$result->push($o);
|
||||
|
||||
// Include agents of agents
|
||||
$result->push($o->all_agents($level+1));
|
||||
}
|
||||
|
||||
return $result->flatten();
|
||||
}
|
||||
|
||||
public function all_clients()
|
||||
public function all_accounts()
|
||||
{
|
||||
// List all the clients of my agents
|
||||
$result = collect();
|
||||
|
||||
foreach ($this->all_clients() as $o)
|
||||
{
|
||||
$result->push($o->accounts->where('active',TRUE));
|
||||
}
|
||||
|
||||
return $result->flatten();
|
||||
}
|
||||
|
||||
public function all_suppliers()
|
||||
public function all_clients($level=0)
|
||||
{
|
||||
// For each supplier, so if that supplier has a parent
|
||||
}
|
||||
$result = collect();
|
||||
|
||||
foreach ($this->clients as $o)
|
||||
{
|
||||
if (! $o->active)
|
||||
continue;
|
||||
|
||||
$o->level = $level;
|
||||
|
||||
$result->push($o);
|
||||
|
||||
// Include clients of agents
|
||||
$result->push($o->all_clients($level+1));
|
||||
}
|
||||
|
||||
return $result->flatten();
|
||||
}
|
||||
public function role()
|
||||
{
|
||||
// If I have agents and no parent, I am the wholesaler
|
||||
|
69
resources/theme/backend/adminlte/r/accounts.blade.php
Normal file
69
resources/theme/backend/adminlte/r/accounts.blade.php
Normal file
@ -0,0 +1,69 @@
|
||||
<div class="box box-success small">
|
||||
<div class="box-header">
|
||||
<h3 class="box-title">Accounts</h3>
|
||||
<div class="box-tools pull-right">
|
||||
<button type="button" class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Collapse">
|
||||
<i class="fa fa-minus"></i></button>
|
||||
<button type="button" class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove">
|
||||
<i class="fa fa-times"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="box-body">
|
||||
@if ($user->all_accounts()->count())
|
||||
<table class="table table-bordered table-striped table-hover" id="clients" style="width: 100%;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Name</th>
|
||||
<th>Active</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>Count {{ $user->all_accounts()->count() }}</th>
|
||||
<th colspan="2"> </th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
@else
|
||||
<p>No Clients Active</p>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@section('page-scripts')
|
||||
@css('https://cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css')
|
||||
@css('https://cdn.datatables.net/rowgroup/1.0.2/css/rowGroup.dataTables.min.css')
|
||||
@js('https://cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js')
|
||||
@js('https://cdn.datatables.net/rowgroup/1.0.2/js/dataTables.rowGroup.min.js')
|
||||
|
||||
<style>
|
||||
table.dataTable td {
|
||||
outline: none;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('#clients').DataTable( {
|
||||
responsive: true,
|
||||
ajax: {
|
||||
url: "/api/r/accounts"
|
||||
},
|
||||
columns: [
|
||||
{ data: "id" },
|
||||
{ data: "company" },
|
||||
{ data: "active_display" }
|
||||
],
|
||||
language: {
|
||||
emptyTable: "No Active Clients"
|
||||
},
|
||||
order: [1, 'asc']
|
||||
});
|
||||
|
||||
$('#clients tbody').on('click','tr', function () {
|
||||
$(this).toggleClass('selected');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@append
|
69
resources/theme/backend/adminlte/r/agents.blade.php
Normal file
69
resources/theme/backend/adminlte/r/agents.blade.php
Normal file
@ -0,0 +1,69 @@
|
||||
<div class="box box-warning small">
|
||||
<div class="box-header">
|
||||
<h3 class="box-title">Agents</h3>
|
||||
<div class="box-tools pull-right">
|
||||
<button type="button" class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip" title="Collapse">
|
||||
<i class="fa fa-minus"></i></button>
|
||||
<button type="button" class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove">
|
||||
<i class="fa fa-times"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="box-body">
|
||||
@if ($user->all_agents()->count())
|
||||
<table class="table table-bordered table-striped table-hover" id="agents" style="width: 100%;">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Name</th>
|
||||
<th>Level</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>Count {{ $user->all_agents()->count() }}</th>
|
||||
<th colspan="2"> </th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
@else
|
||||
<p>No Agents Active</p>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@section('page-scripts')
|
||||
@css('https://cdn.datatables.net/responsive/2.2.1/css/responsive.dataTables.min.css')
|
||||
@css('https://cdn.datatables.net/rowgroup/1.0.2/css/rowGroup.dataTables.min.css')
|
||||
@js('https://cdn.datatables.net/responsive/2.2.1/js/dataTables.responsive.min.js')
|
||||
@js('https://cdn.datatables.net/rowgroup/1.0.2/js/dataTables.rowGroup.min.js')
|
||||
|
||||
<style>
|
||||
table.dataTable td {
|
||||
outline: none;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('#agents').DataTable( {
|
||||
responsive: true,
|
||||
ajax: {
|
||||
url: "/api/r/agents"
|
||||
},
|
||||
columns: [
|
||||
{ data: "user_id_url" },
|
||||
{ data: "surfirstname" },
|
||||
{ data: "level" }
|
||||
],
|
||||
language: {
|
||||
emptyTable: "No Active Agents"
|
||||
},
|
||||
order: [1, 'asc']
|
||||
});
|
||||
|
||||
$('#agents tbody').on('click','tr', function () {
|
||||
$(this).toggleClass('selected');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@append
|
25
resources/theme/backend/adminlte/resellerhome.blade.php
Normal file
25
resources/theme/backend/adminlte/resellerhome.blade.php
Normal file
@ -0,0 +1,25 @@
|
||||
@extends('adminlte::layouts.app')
|
||||
|
||||
@section('htmlheader_title')
|
||||
Home
|
||||
@endsection
|
||||
|
||||
@section('contentheader_title')
|
||||
{{ $o->full_name }}
|
||||
@endsection
|
||||
@section('contentheader_description')
|
||||
Home
|
||||
@endsection
|
||||
|
||||
@section('main-content')
|
||||
<div class="content">
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
@include('r.agents')
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
@include('r.accounts')
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
@ -5,7 +5,7 @@
|
||||
@endsection
|
||||
|
||||
@section('contentheader_title')
|
||||
{{ $user->full_name }}
|
||||
{{ $o->full_name }}
|
||||
@endsection
|
||||
@section('contentheader_description')
|
||||
Home
|
||||
@ -14,13 +14,13 @@
|
||||
@section('main-content')
|
||||
<div class="content">
|
||||
<div class="row">
|
||||
@if ($user->accounts->count() > 2)
|
||||
@if ($o->accounts->count() > 2)
|
||||
<div class="col-sm-3">
|
||||
<div class="info-box">
|
||||
<span class="info-box-icon bg-orange"><i class="fa fa-user"></i></span>
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">Accounts Linked</span>
|
||||
<span class="info-box-number">{{ $user->accounts->count() }}</span>
|
||||
<span class="info-box-number">{{ $o->accounts->count() }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -30,7 +30,7 @@
|
||||
<span class="info-box-icon bg-red"><i class="fa fa-dollar"></i></span>
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">Account Balance</span>
|
||||
<span class="info-box-number"><small>$</small> {{ number_format($user->invoices_due->sum('due'),2) }}</span>
|
||||
<span class="info-box-number"><small>$</small> {{ number_format($o->invoices_due->sum('due'),2) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -39,7 +39,7 @@
|
||||
<span class="info-box-icon bg-green"><i class="fa fa-clone"></i></span>
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">Active Services</span>
|
||||
<span class="info-box-number">{{ $user->services_active->count() }} <small>/{{ $user->services->count() }}</small></span>
|
||||
<span class="info-box-number">{{ $o->services_active->count() }} <small>/{{ $o->services->count() }}</small></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -48,7 +48,7 @@
|
||||
<span class="info-box-icon bg-blue"><i class="fa fa-hashtag"></i></span>
|
||||
<div class="info-box-content">
|
||||
<span class="info-box-text">Invoices Due</span>
|
||||
<span class="info-box-number">{{ $user->invoices_due->count() }}</span>
|
||||
<span class="info-box-number">{{ $o->invoices_due->count() }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -62,7 +62,7 @@
|
||||
@include('widgets.invoices_due')
|
||||
</div>
|
||||
<div class="col-xs-5">
|
||||
@include('widgets.payment_history',['limit'=>10])
|
||||
@include('widgets.payment_history')
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -77,8 +77,6 @@
|
||||
|
||||
$('#services tbody').on('click','tr', function () {
|
||||
$(this).toggleClass('selected');
|
||||
//var data = table.row(this).data();
|
||||
//window.location.href = '/u/service/view/'+data.id;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
@ -19,6 +19,11 @@ Route::middleware('auth:api')->get('/user', function (Request $request) {
|
||||
});
|
||||
*/
|
||||
|
||||
Route::group(['middleware'=>['auth:api','reseller']], function() {
|
||||
Route::get('/r/agents','ResellerServicesController@agents');
|
||||
Route::get('/r/accounts','ResellerServicesController@accounts');
|
||||
});
|
||||
|
||||
Route::group(['middleware'=>'auth:api'], function() {
|
||||
Route::get('/u/invoices','UserServicesController@invoices');
|
||||
Route::get('/u/payments','UserServicesController@payments');
|
||||
|
Loading…
Reference in New Issue
Block a user