@extends('layouts.app') @section('title', 'Customers') @section('content_header_title', 'Customers') @section('content_body') Add New Customer
Reset
@if(session('success'))
{{ session('success') }}
@endif @foreach($customers as $customer) @endforeach
ID Title First Name Last Name Email Mobile No. Actions
{{ $customer->id }} {{ $customer->title }} {{ $customer->first_name }} {{ $customer->last_name }} {{ $customer->email }} {{ $customer->mobile_no }} Edit
@csrf @method('DELETE')
{{ $customers->links('pagination::bootstrap-4') }}
@endsection