@extends('backend.layout.master-tailwind') @section('title', __('All Banners')) @section('admin_styles') @endsection @section('content')

{{ __('Mobile App Banners') }}

{{ __('Manage promotional banners for mobile app') }}

@can('banner-bulk-delete') @endcan
@can('banner-bulk-delete') @endcan @forelse($banners as $data) @can('banner-bulk-delete') @endcan @empty @endforelse
{{ __('Image') }} {{ __('Category') }} {{ __('Project') }} {{ __('Status') }} {{ __('Actions') }}
@php $img = get_attachment_image_by_id($data->image); @endphp @if($img) @else {{ __('(no image)') }} @endif {{ optional($data->category)->category }} {{ optional($data->project)->title }} {{ $data->status ? __('Published') : __('Draft') }}
{{ __('No banners found') }}
{{-- Add Banner Modal --}}
{{ __('Add New Banner') }}
@csrf
{{ __('Recommended size: 1920×1080') }}
{{-- Edit Banner Modal --}}
{{ __('Edit Banner') }}
@csrf
{{ __('Recommended size: 1920×1080') }}
@endsection @section('script') @endsection