@extends("vendor.template.layout")
@section('header')
@stop
@section('content')
@if ($list->total() > 0)
# |
Product Name |
Seller |
Created Date |
Action |
@foreach ($list as $item)
{{ $i }} |
{{ $item->name }} |
{{ $item->business_name }} |
{{ get_date_in_timezone($item->created_on, 'd-M-y H:i A') }} |
|
@endforeach
{!! $list->links('admin.template.pagination') !!}
@else
@endif
@stop
@section('script')
@stop