@extends('dashboard.layouts.app') @section('title', __('dashboard.Customers') . ' | ' . __('dashboard.All Customers')) @section('page_heading', __('dashboard.All Customers')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.All Customers') }}

@if($customers->isEmpty())
{{ __('dashboard.No customers found.') }}
@else @foreach($customers as $cust) @endforeach
{{ __('dashboard.ID') }} {{ __('dashboard.Name') }} {{ __('dashboard.Phone') }} {{ __('dashboard.Address') }} {{ __('dashboard.Actions') }}
{{ $cust->id }} {{ $cust->name }} {{ $cust->phone }} {{ $cust->address }}
{{ $customers->appends(request()->query())->links() }} @endif
@endsection @section('scripts') @endsection