@extends('layouts/contentNavbarLayout')
@section('title', 'products')
@section('content')
products
| # |
name |
category |
image |
action |
@foreach($products as $product)
| {{$i}} |
{{$product->getTranslation('name',env('DEFAULT_LANG'))}} |
{{$product->category->getTranslation('name',env('DEFAULT_LANG'))}} |
}}) |
|
@endforeach
@endsection
@section('page-script')
@endsection