@extends('frontend.layouts.app') @section('title') @if ($request->type == 'images') Image @else Video @endif Gallery - @endsection @push('style') @endpush @section('content') @php $title = $request->type == 'images' ? 'Image Gallery' : 'Video Gallery'; @endphp @include('frontend.layouts.include.breadcrumb', [ 'items' => [ ['name' => $title, 'url' => route('galleryPage', ['type' => $request->type])], ['name' => $folder->name, 'url' => null], ], ])