@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 Address Company Action
{{ $key + 1 }} {{ $customer->customer_name }} {{ $customer->email }} {{ $customer->contact }} {{ $customer->address }} {{ $customer->company_name }}
@can('customer.show') @endcan @can('customer.edit') @endcan @can('customer.destroy') @endcan
@endsection