mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
973eacf6c3
The SAML routes are in a service provide (sigh), so they did not have the `web` middleware group assigned to it. I also added some additional checks so that the setup blade won’t fail (the migrations wouldn’t have been run yet, so outside of a try/catch, it would return an error since those tables don’t exist.)
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Auth;
|
|
use App\Models\Asset;
|
|
use Closure;
|
|
|
|
class AssetCountForSidebar
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
try
|
|
{
|
|
$total_rtd_sidebar = Asset::RTD()->count();
|
|
view()->share('total_rtd_sidebar', $total_rtd_sidebar);
|
|
} catch (\Exception $e) {
|
|
\Log::debug($e);
|
|
}
|
|
|
|
try {
|
|
$total_deployed_sidebar = Asset::Deployed()->count();
|
|
view()->share('total_deployed_sidebar', $total_deployed_sidebar);
|
|
} catch (\Exception $e) {
|
|
\Log::debug($e);
|
|
}
|
|
|
|
try {
|
|
$total_archived_sidebar = Asset::Archived()->count();
|
|
view()->share('total_archived_sidebar', $total_archived_sidebar);
|
|
} catch (\Exception $e) {
|
|
\Log::debug($e);
|
|
}
|
|
|
|
try {
|
|
$total_pending_sidebar = Asset::Pending()->count();
|
|
view()->share('total_pending_sidebar', $total_pending_sidebar);
|
|
} catch (\Exception $e) {
|
|
\Log::debug($e);
|
|
}
|
|
|
|
try {
|
|
$total_undeployable_sidebar = Asset::Undeployable()->count();
|
|
view()->share('total_undeployable_sidebar', $total_undeployable_sidebar);
|
|
} catch (\Exception $e) {
|
|
\Log::debug($e);
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|