@extends('layouts.app') @section('content')
@foreach($customers as $customer) @endforeach
Name Address Email Phone No Tin Actions
{{ $customer->name ?: "(blank)" }} {{ $customer->address ?: "(blank)" }} {{ $customer->email ?: "(blank)" }} {{ $customer->phone_no ?: "(blank)" }} {{ $customer->tin ?: "(blank)" }} @if($customer->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else @lang('Show')
@endif
{{-- {{ $customers->withQueryString()->links() }} --}}
@endsection