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

Customers List

@if(session('success')) @endif
{{-- --}} @foreach($customers as $index => $customer) {{-- --}} @endforeach
# NameEmailPhone City Country Note Actions
{{ $index + 1 }} {{ $customer->name }}{{ $customer->email ?? '-' }}{{ $customer->phone ?? '-' }} {{ $customer->city ?? '-' }} {{ $customer->country ?? '-' }} {{ $customer->note ?? '-' }}
@csrf @method('DELETE')
@endsection