@extends('dashboard.layouts.app') @push('page_vendor_css') @endpush @push('page_styles') @endpush @section('content')

Staff

@foreach ($all_staff as $index => $staff) @endforeach
ID Image Name Created at Action
{{ $staff->id }} cover {{ $staff->name }} {{ $staff->created_at }} @if(auth()->user()->canany(['super', 'staff-show'])) @endif @if(auth()->user()->canany(['super', 'staff-edit'])) @endif @if(auth()->user()->canany(['super', 'staff-destroy'])) @endif
{{ $all_staff->links('vendor.pagination.bootstrap-4') }}
@endsection @push('page_scripts_vendors') @endpush @push('page_scripts') @endpush