@extends('frontend.layouts.app') @section('title', __('downloads.title')) @section('meta', __('downloads.meta_description')) @section('content')
Banner Image
@forelse ($downloads as $download)
{{ app()->getLocale() === 'np' ? $download->name_np : $download->name_en }}
{{ __('downloads.download_date') }}

{{ isset($download->created_at) ? $download->created_at->format('jS F Y') : 'Date not available' }}

{{ __('downloads.download_button') }}
@empty

{{ __('downloads.empty_state.message') }}

@endforelse
@if ($downloads instanceof \Illuminate\Pagination\LengthAwarePaginator)
{{ $downloads->links('pagination::bootstrap-5') }}
@endif
@endsection