Novo registro
@if (session()->has('success'))
@push('scripts')
@include('admin.scripts.toast')
@endpush
@endif
@if (session()->has('error'))
@push('scripts')
@include('admin.scripts.toast')
@endpush
@endif
| id |
Imagem |
Nome |
Cargo |
Status |
Ações |
@foreach ($peoples as $people)
| {{ $people->id }} |
 |
{{ $people->name }} |
{{ $people->cargo }} |
@if ($people->status === 1)
Ativo
@else
Inativo
@endif
|
|
@endforeach
{{ $peoples->links() }}
@endsection