@extends('admin.includes.masterpage-admin') @section('content')

@if(Session::has('message'))
× {{ Session::get('message') }}
@endif
@foreach($staffs as $staff) @endforeach
Staff Name Email Phone Role Status Actions
{{$staff->name}} {{$staff->email}} {{$staff->phone}} {{ucfirst($staff->role)}} @if($staff->status == 1) Active @else Banned @endif
{{csrf_field()}} View Details @if($staff->id != 1) @endif

@stop @section('footer') @stop