@extends('layouts.backend')
@section('content-header')
Produits
{{ $products->total() }} produits
@endsection
@section('content')
| ID |
Ref |
Nom du produit |
Categorie |
Marque |
Actif |
Action |
@foreach($products as $product)
| {{ $product->id }} |
{{ $product->ref }} |
{{ $product->name }} |
{{ isset($product->category)?$product->category->name:null }} |
{{ isset($product->brand)?$product->brand->name:null }} |
@if($product->published)
@else
@endif
|
|
@endforeach
@endsection