Quick Actions

@can('create', App\Models\Document::class) @include('dashboard.partials.icon', ['name' => 'plus', 'class' => 'h-4 w-4']) Upload Document @endcan @can('viewAny', App\Models\Document::class) @if($draftDocuments > 0) @include('dashboard.partials.icon', ['name' => 'search', 'class' => 'h-4 w-4']) View Drafts {{ $draftDocuments }} @endif @if($expiringDocuments > 0) @include('dashboard.partials.icon', ['name' => 'clock', 'class' => 'h-4 w-4']) Expiring Documents {{ $expiringDocuments }} @endif @endcan @can('manage-users') @include('dashboard.partials.icon', ['name' => 'user-plus', 'class' => 'h-4 w-4']) Add User @endcan @can('manage-folders') @include('dashboard.partials.icon', ['name' => 'folder', 'class' => 'h-4 w-4']) New Folder @endcan