@extends('layouts.admin')
@section('title', 'Produits')
@section('page_title', 'Gestion des produits')
@section('content')
@if($produits->count())
| Image | Nom | Catégorie | Prix | Taille | Actions |
@foreach($produits as $p)
@if($p->image)
@else
@endif
|
{{ $p->name }} |
{{ $p->category }} |
{{ $p->price }} TND |
{{ $p->size ?? '-' }} |
|
@endforeach
@else
@endif
@endsection