@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
@can('customer.create') Add @endcan
@forelse ($customers as $key => $customer) @empty @endforelse
S.N Customer Name Email Contact Photo Address Action
{{ $key + 1 }} {{ $customer->customer_name }} {{ $customer->email }} {{ $customer->contact }} {{ asset('assets/images/small/img-9.jpg') }} {{ $customer->permanent_address }}
@can('customer.show') @endcan @can('customer.edit') @endcan @can('customer.destroy') @endcan
@endsection