{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'ASC Merchants') {{-- vendors styles --}} @section('vendor-style') @endsection {{-- page styles --}} @section('page-style') @endsection @section('content')
Asc Merchant
{{ $merchants->withQueryString()->links() }}
@forelse ($merchants as $key => $merchant) @empty @endforelse
# Asc Name Asc Image Phone Number Grade City Township
{{ $merchant->display_merchant_id < 10 ? '0'.$merchant->display_merchant_id : $merchant->display_merchant_id }} {{ $merchant->name }} @if (count($merchant->images) > 0) merchant image @else merchant image @endif {{ $merchant->phone_number }} {{ $merchant->grade }} {{ $merchant->address->city->name ?? '-'}} {{ $merchant->address->township->name ?? '-'}}
@if ($merchant->is_asc == 1) edit @endif remove_red_eye
No Asc Found!
{{ $merchants->withQueryString()->links() }}
@endsection @section('page-script') @endsection