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

Gallery

@forelse($albums as $album)
{{ $album->title }} — {{ $album->images->count() }} photos
@foreach($album->images->take(6) as $img) @endforeach
@empty

No albums yet.

@endforelse
@endsection