@extends('layouts.admin') @section('title', 'Photos') @section('content')

Photos

Nouvel Album
@if (session('success')) @endif
@forelse ($albums as $album)

{{ Str::limit($album->titre, 30) }}

{{ $album->photos()->count() }} photo(s) ajoutée(s) le {{ date("d M Y à H:i", strtotime($album->created_at)) }}
{!! Form::model($album, ['method' => 'DELETE', 'id'=>'album'.$album->id, "url" => route('admin-cnp.photos.destroy', $album)]) !!} @csrf {!! Form::close() !!}
@empty {{"Pas encore d'albums"}} @endforelse
@if ($albums)
{{ $albums->links() }}
@endif
@endsection