@if($message = Session::get('success'))
{{$message}}
@endif
@if($message = Session::get('delete'))
{{$message}}
@endif
@can('superusercreate1')
@endcan
User Management
No | Name | Submission date | Action | |
---|---|---|---|---|
{{ $user->id }} | {{ $user->name }} | {{ $user->email }} | {{ date("l | dS F, Y g:i A",strtotime($user->create)) }} | Show @can('superuseredit') Edit @endcan @can('superuserdelete') {!! Form::open(['method' => 'DELETE','route' => ['myusers.destroy', $user->id],'style'=>'display:inline']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} {!! Form::close() !!} @endcan |