@extends("admin.template.layout") @section('header') @stop @section('content')
@if($message = Session::get('success'))
{{ $message }}
@endif @if($message = Session::get('error'))
{{ $message }}
@endif @if(check_permission('food_products','Create') || check_permission('food_products','ImportExport') )
@if(check_permission('food_products','Create')) @if($store_id != null) Create Product @else Create Product @endif @endif @if(check_permission('food_products','ImportExport')) Import @endif
@endif
@include('admin/food_product/search_form')
{{-- --}} @if ($list->total() > 0) @foreach ($list as $item) {{-- --}} @endforeach @else @endif
# Product NameSellerStore Is Active Created Date Action
{{ $i }} {{ $item->product_name }} {{ $item->store->name ?? '-' }}{{$item->shared_product ==1 ? 'Shared with outlets' :'Not Shared'}} {{web_date_in_timezone($item->created_at,'d-M-Y h:i A')}}
No products found
{!! $list->appends(['store_id' => request()->store_id])->links('admin.template.pagination') !!}
@stop @section('script') @stop