@extends('layouts.app') @section('content')
@if($brands->count() > 0)
@foreach($brands as $brand) @include('inventory.brands.partials.edit', ['brand' => $brand]) @endforeach
Logo Nom Crée le Status Actions
@if($brand->logo) image-{{ $brand->name }} @else image défaut @endif {{ $brand->name }} {{ $brand->created_at->translatedFormat('d M Y') }} {{ $brand->status ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
@else

Aucune catégorie trouvée.

@endif
@include('inventory.brands.partials.add') @endsection