@extends('admin.layout') @section('content')

{{ __('Products') }}

{{ __('Products List:') }}

{{ __('Add Product') }}
@foreach ($products as $id=>$product) @endforeach
# {{ __('Image') }} {{ __('Title') }} {{ __('Price') }} {{ __('Category') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$id }} {{$product->title}} {{ Helper::showAdminCurrencyPrice($product->current_price) }} {{$product->category->name}} @if($product->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf
@endsection