@extends('frontend.layouts.app') @section('title') Photo Albums @stop @section('content')

Photo Albums

@foreach ($albums as $album)
image-{{ $album->id }}

{{ $album->name }}

{{--

{{ $album->name }} @if (app()->getLocale() == 'en') {{ $album->translate(app()->getLocale())->title }} @else {{ $album->translate(app()->getLocale())->title }} @endif

--}} {{--

{{ Str::of($album->name)->limit(300) }}

--}}
@endforeach
{{--

Categories

--}}
@stop