@extends('layouts.app') @section('content')

Customers

+ New Customer
@forelse($customers as $customer) @empty @endforelse
Name Email Status
{{ $customer->name }} {{ $customer->email }} {{ ucfirst($customer->status) }}
No customers found.
{{ $customers->links() }}
@endsection