{{ $stores->links() }}
@if(count($stores))
Showing {{$stores->firstItem()}} to {{$stores->lastItem()}} of {{$stores->total()}} Results
@endif
@foreach($stores as $data) @if(auth()->user()->user_type_id == '2' || auth()->user()->user_type_id == '4') @endif @endforeach
ID Store Name Store Address Date
{{ $data->id }} {{ $data->name }} {{ $data->complete_address}} {{ date('M-d-Y', strtotime($data->created_at)) }} @if(auth()->user()->user_type_id == '2') @endif
@if($data->availability == '1')
@else
@endif
{{ $stores->links() }}