@extends('layouts.app') @section('title', 'Pelanggan') @section('page-title', 'Pelanggan') @section('content')
@if(request('q')) ✕ @endif
+ Tambah Pelanggan
@forelse($customers as $i => $customer) @empty @endforelse
# Nama Telepon
{{ $customers->firstItem() + $i }} {{ $customer->name }} {{ $customer->phone }}
Edit
@csrf @method('DELETE')
{{ request('q') ? 'Tidak ada pelanggan yang cocok.' : 'Belum ada data pelanggan.' }}
@if($customers->hasPages())
{{ $customers->links() }}
@endif @endsection