@extends('website.layouts.app') @section('content') @include('website.layouts.title_section')
@foreach ($galleries as $type => $gallery)
{{ str_replace('_', ' ', $type) }}
@foreach($gallery as $item)
Gallery
{!! \Illuminate\Support\Str::limit($item->content, 100) !!}
@if($item->location)
{{ $item->location }}
@endif
@endforeach
@endforeach
@endsection