moon ledger update

This commit is contained in:
2020-04-25 04:49:39 -05:00
parent 3ae603a789
commit 48042df9d5
4 changed files with 171 additions and 1 deletions

View File

@@ -28,7 +28,7 @@ class AdminDashboardController extends Controller
public function __construct()
{
$this->middleware('auth');
$this->middleware('role:Guest');
$this->middleware('role:Member');
}
/**
@@ -41,6 +41,19 @@ class AdminDashboardController extends Controller
redirect('/dashboard');
}
//Declare variables we will need
$days = 30;
$sovBills = array();
$pi = array();
$industry = array();
$reprocessing = array();
$office = array();
$sprActual = array();
$srpLoss = array();
//Get the data for the sov expenses for a graph
return view('admin.dashboards.dashboard');
}
}