@extends('layouts.master') @section('content')
@lang('Products')
@if(Entrust::can('product-create'))
@endif
@foreach($products as $index => $product) @endforeach
{{ __('Name') }} {{ __('Price') }} {{ __('Action') }}
{{$product->name}} {{formatMoney($product->moneyPrice)}} @if(Entrust::can('product-edit')) @endif @if(Entrust::can('product-delete')) @endif
@if($products->isEmpty())

@lang('No products')

@endif
@if(Entrust::can('product-create') || Entrust::can('product-edit')) @endif @if(Entrust::can('product-delete')) @endif @endsection @push('scripts') @endpush