@extends('layouts.dashboard') @section('title', 'Gallery') @section('content')

Gallery

Add photo
@foreach ($photos as $photo)
{{ $photo->caption }}

{{ $photo->caption ?: '—' }}

{{ $photo->active ? 'Active' : 'Inactive' }}

@if ($photo->is_placeholder) placeholder @endif
Edit
@csrf @method('DELETE')
@endforeach
@endsection