@extends('includes.main') @section('main-container')

Customers

@if (session()->has('type')) @endif
@forelse ($customer as $item) @empty @endforelse
# Name Phone Nic Address Action
{{ $item->id }} {{ $item->name }} {{ $item->phone }} {{ $item->nic }} {{ $item->address }}
{!! btnDelete('customer.destroy', 'customers', $item->id) !!}
No record found.
{{-- Pagination --}}
{!! $customer->links() !!}
@endsection