@extends('backend.master') @section('content')

Customers Table

{{-- @if (session('msg')) @endif @if (session('danger')) @endif --}} @foreach ($customers as $customer) @endforeach
Id Name Email Mobile Status Actions
{{ $customer->id }} {{ $customer->name }} {{ $customer->email }} {{ $customer->mobile }} @if ($customer->status == 0) Inactive @else Active @endif {{-- --}}
@csrf @method('DELETE')
{{-- onclick="confirmation(event)"" --}}
{{ $customers->links('pagination::bootstrap-5') }}
@endsection