mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-01 00:47:27 -08:00
Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
6f40b21986
|
@ -18,6 +18,14 @@ class AssetCountForSidebar
|
||||||
*/
|
*/
|
||||||
public function handle($request, Closure $next)
|
public function handle($request, Closure $next)
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* This needs to be set for the /setup process, since the tables might not exist yet
|
||||||
|
*/
|
||||||
|
$total_due_for_checkin = 0;
|
||||||
|
$total_overdue_for_checkin = 0;
|
||||||
|
$total_due_for_audit = 0;
|
||||||
|
$total_overdue_for_audit = 0;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$total_rtd_sidebar = Asset::RTD()->count();
|
$total_rtd_sidebar = Asset::RTD()->count();
|
||||||
view()->share('total_rtd_sidebar', $total_rtd_sidebar);
|
view()->share('total_rtd_sidebar', $total_rtd_sidebar);
|
||||||
|
|
Loading…
Reference in a new issue