@extends('layouts.app') @php $profile = asset(Storage::url('upload/profile/')); @endphp @section('page-title') {{ __('Client') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ __('Client List') }}
@if (Gate::check('create client')) @endif
@foreach ($clients as $user) @endforeach
{{ __('User Profile') }} {{ __('Email') }} {{ __('Address') }} {{ __('Action') }}
User image
{{ $user->name }}

{{ !empty($user->phone_number) ? $user->phone_number : '' }}

{{ $user->email }} {{ $user->address }}
{!! Form::open(['method' => 'DELETE', 'route' => ['users.destroy', [encrypt($user->id), 'type' => 'client']]]) !!} @can('show client') @endcan @can('edit client') @endcan @can('delete client') @endcan {!! Form::close() !!}
@endsection