@extends("admin.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 }} |
{{web_date_in_timezone($item->created_on,'d-M-Y h:i A')}} |
|
@endforeach
{!! $list->links('admin.template.pagination') !!}
@else
@endif
@stop
@section('script')
@stop