@extends('layouts.app')
{{-- Customize layout sections --}}
@section('subtitle', 'USERS')
@section('content_header_title', 'USERS')
@section('content_header_subtitle', 'LIST')
{{-- Content body: main page content --}}
@section('content_body')
@can('user create')
@endcan
| NAME |
EMAIL |
ACTIONS |
@foreach($users as $user)
| {{$user->name}} |
{{$user->email}} |
@can('user edit')
@endcan
@can('user delete')
@endcan
|
@endforeach
@stop
{{-- Push extra CSS --}}
@push('css')
{{-- Add here extra stylesheets --}}
@endpush
{{-- Push extra scripts --}}
@push('js')
@endpush