{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content') {{-- Dashboard 1 --}} @parent
@include('common.msg')

Photo Gallery List

@forelse($rows as $r) @empty @endforelse
# Thumb Image Title Album Action
{{$index++}}. {{$r->title??''}} {{$r->getPhotoAlbum->title??''}}
@csrf @method('delete')
No data found!
{!! $rows->appends(request()->query())->links('pagination::bootstrap-4') !!}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') {{-- vendors --}} {{-- page scripts --}} @endsection