@extends("vendor.template.layout") @section('header') @stop @section('content')
@if($message = Session::get('success'))
{{ $message }}
@endif @if($message = Session::get('error'))
{{ $message }}
@endif
@include('vendor/product/search_form')
@if ($list->total() > 0) @foreach ($list as $item) @endforeach @else @endif
# Product Name Seller Type Is Active Created Date Action
{{ $i }} {{ $item->product_name }} {{ $item->name }} {{$item->product_type ==1 ? 'Simple' :'Variable'}} {{ get_date_in_timezone($item->created_on, 'd-M-y H:i A') }}
No products found
{!! $list->links('vendor.template.pagination') !!}
@stop