@extends('layouts.public') @section('title', $album->title) @section('meta_description', $album->description) @section('meta_image', $album->cover_image ? asset_path($album->cover_image) : '') @section('content') @foreach (['all' => __('All'), 'photos' => __('Photos'), 'videos' => __('Videos')] as $key => $label) {{ $label }} @endforeach {{ __('All albums') }} @include('public.partials.gallery-grid', ['items' => $items]) @endsection