@extends('layouts.app') @section('content')

{{trans('lang.dispatcher_user')}}

@if(count($users) > 0) @foreach($users as $customer) @if (file_exists(public_path('assets/images/dispatcher_users'.'/'.$customer->profile_picture_path)) && !empty($customer->profile_picture_path)) @else @endif @if ($customer->status=="yes") @else @endif @endforeach @else @endif
{{trans('lang.extra_image')}} {{trans('lang.user_name')}} {{trans('lang.email')}} {{trans('lang.user_phone')}} {{trans('lang.status')}} {{trans('lang.actions')}}
imageimage{{$customer->first_name}} {{ $customer->last_name}} {{ $customer->email}} {{ $customer->phone}}
{{trans("lang.no_result")}}
{{ $users->links('pagination.pagination') }}
@endsection @section('scripts') @endsection