@extends('admin.layout') @section('title') Gestion des Lieux @endsection @section('content')

Gestion des Lieux


@foreach($lieux as $lieu) @endforeach
Image Lieu Action
{{ $i++ }} @if($lieu->photo) @php $photos = json_decode($lieu->photo); @endphp @if(!empty($photos) && isset($photos[0]) && file_exists(public_path('uploads/' . $photos[0]))) Photo @else No Image @endif @else No Images @endif {{ $lieu->lieu ?? '' }} Modifier Supprimer
@endsection @section('script') @endsection