@extends('suppliers.layout') @section('suppliers.content')
@foreach($suppliers as $supplier) @endforeach
Name Contacts Address Tin Balance Actions
{{ $supplier->name ?: "(blank)" }} {{ $supplier->contacts ?: "(blank)" }} {{ $supplier->address ?: "(blank)" }} {{ $supplier->tin ?: "(blank)" }} {{ $supplier->balance ?: "0" }} @if($supplier->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else @lang('Show')
@endif
{{-- {{ $suppliers->withQueryString()->links() }} --}}
@endsection