@extends('layouts.app') @section('title', 'Galéries') @section('main_title_wrapper')

Galéries

{{--

Photos

--}} @endsection @section('content')
@forelse ($albums as $album) @php $assetImage = asset('images/albums/'.$album->photos()->first()->name); @endphp
@empty
{{"Pas encore de galéries"}}
@endforelse
@if ($albums)
{{ $albums->links('vendor.pagination.pagination') }}
@endif
@endsection @section('css') @endsection