@extends('layouts.admin') @section('title', 'Customers') @section('content')

Customers

@if (session('status')) @endif
Add New Customer
@csrf
@foreach ($customers as $customer) @endforeach
ID  Name  Actions
{{ $customer->id }} {{ $customer->name }} Edit
@csrf @method('DELETE')
Showing {{ $customers->firstItem() }} to {{ $customers->lastItem() }} of {{ $customers->total() }} items
{{ $customers->appends(['sort' => $sort, 'order' => $order])->links('pagination::bootstrap-5') }}
@endsection