@extends('layouts.app') @section('content')
| Image | Nom | Emplacement | Contact | Crée le | Manager | Services | Status | Actions |
|---|---|---|---|---|---|---|---|---|
@if($magasin->image && file_exists(public_path('images/products/' . $magasin->image)))
@if($magasin->image)
Image non trouvée dans products : {{ $magasin->image }} @endif @endif |
{{ $magasin->name }} | {{ $magasin->location ?? 'Non défini' }} | {{ $magasin->contact }} | {{ $magasin->created_at->translatedFormat('d M Y') }} | {{ $magasin->manager->name ?? '—' }} | {{ $magasin->services_enabled == '1' ? 'Activés' : 'Inactifs' }} | {{ $magasin->status ? 'Active' : 'Inactive' }} |
Aucun magasin trouvé.
@endif