@extends('customers.layout') @section('customers.content')
@foreach($customers as $customer) @endforeach
Name Contact Alt Contact Balance Actions
{{ $customer->name ?: "-" }} {{ $customer->contact ?: "-" }} {{ $customer->alt_contact ?: "-" }} {{ $customer->balance ? number_format($customer->balance): "-" }} @if($customer->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else @lang('Show')
@endif
@endsection