@extends('dashboard.layouts.master') @section('title') @endsection @section('css') @include('dashboard.layouts.css') @endsection @section('body')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($clients as $client) @endforeach
# الأسم الهاتف الأيميل اجمالى الطلبات عدد الطلبات التاريخ العمليـــات
{{ $i }} {{ $client->name }} {{ $client->phone }} {{ $client->email }} {{ 'A/N' }} {{ 'A/N' }} {{date("Y-m-d", strtotime($client->created_at))}} @can('admin.clients.edit') @endcan @can('admin.clients.delete') @endcan
@endsection @section('js') @include('dashboard.layouts.js') @endsection