@extends('layouts.app') @section('content')
{{translate('Add New Staff')}}

{{translate('Staffs')}}

@foreach($staffs as $key => $staff) @if($staff->user != null) @endif @endforeach
# {{translate('Name')}} {{translate('Email')}} {{translate('Phone')}} {{translate('Role')}} {{translate('Options')}}
{{$key+1}} {{$staff->user->name}} {{$staff->user->email}} {{$staff->user->phone}} {{$staff->role->name}}
@endsection @section('script') @endsection @section('modal') @endsection