@extends('Company.layout.master') @section('title', 'Gallery Management') @section('page_name', 'Gallery Management') @section('content') @php $stats = [ ['title' => 'Total Images', 'value' => $data->count(), 'icon' => 'bi-images', 'color' => 'primary'], ['title' => 'Albums', 'value' => '3', 'icon' => 'bi-folder', 'color' => 'success'], ['title' => 'New (Month)', 'value' => '12', 'icon' => 'bi-arrow-up-circle', 'color' => 'info'], ['title' => 'Storage', 'value' => number_format($totalSizeMB,2).' MB', 'icon' => 'bi-database', 'color' => 'warning'], ]; @endphp
@if(session('success'))
{{ session('success') }}
@endif
@foreach($stats as $stat)
{{ $stat['value'] }}
{{ $stat['title'] }}
@endforeach
Upload Image
@csrf
@error('image') {{$message}} @enderror
@error('caption') {{$message}} @enderror
@error('album') {{$message}} @enderror
Recent Uploads
@foreach($image as $img)
{{ $img->caption }}
{{ $img->caption }}
{{ $img->album }} • {{ $img->created_at->diffForHumans() }}
@endforeach
{{ $image->links('pagination::bootstrap-5') }}
@endsection @push('scripts') @endpush