@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.hello_name', array('name' => auth()->user()->display_name)) }} @parent @stop {{-- Account page content --}} @section('content') @if (!request()->filled('user_id') || auth()->user()->id == $user->id) @if ($acceptanceQuantity = \App\Models\CheckoutAcceptance::forUser(Auth::user())->pending()->sum('qty'))
@endif @endif {{-- Manager View Dropdown --}} @if (isset($settings) && $settings->manager_view_enabled && isset($subordinates) && $subordinates->count() > 1)
@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop