@extends("admin.template.layout") @section("header") @stop @section("content")
Clear
@foreach($list as $datarow) @endforeach
# Vendor Details Address Country/City Created
{{$i}}
{{$datarow->vendordata->company_name??''}}
{{$datarow->email}}
+{{$datarow->dial_code}} {{$datarow->phone}}
@if(!empty($datarow->vendordata)) {{$datarow->vendordata->address1}}
{{$datarow->vendordata->address2}}
{{$datarow->vendordata->street}} @endif
@if(!empty($datarow->country)) {{$datarow->country->name??''}},{{$datarow->city->name??''}} @endif {{$datarow->created_at}}
Total {{ $list->total() }} entries
{{-- {!! $list->links('admin.template.pagination') !!} --}} {!! $list->appends(request()->input())->links('admin.template.pagination') !!}
@stop @section("script") @stop