@extends('dashboard.layouts.layouts') @section('title', 'Dashboard') {{--Drop Your Customized Style Codes Here--}} @section('customizedStyle') @endsection {{--Drop Your Customized Scripts Codes Here--}} @section('customizedScript') @endsection {{-- Start of page Content --}} @section('content')

Albums All Albums

@if(session()->has('created')) @endif @if(session()->has('updated')) @endif @if(session()->has('deleted')) @endif @if(session()->has('uploaded')) @endif

All Albums Info

Add New Album
@include('dashboard.layouts.messages') @if($albums) @foreach($albums as $album) @endforeach @endif
id Thumbnail Name Type Number of Items Created at Updated at Actions
id Thumbnail Name Type Number of Items Created at Updated at Actions
{{$album->id}} slide image {{$album->album_en->title}} {{$album->type == 'img' ? 'Images' : 'Videos'}} {{$album->type == 'img' ? count($album->images) : count($album->videos)}} {{$album->created_at ? $album->created_at->format('D M Y') : ''}} {{$album->updated_at ? $album->updated_at->format('D M Y') : ''}} @if($album->type == 'img') @elseif($album->type == 'vid') @endif {{-- --}} {{-- --}}
@if($albums) @foreach($albums as $album) @endforeach @endif
@endsection