@extends('admin.layouts.layout') @section('content')

Banner Details

Banner Information

@if($data)
@if($data->updated_at != $data->created_at) @endif
Title: {{ $data->title ?? 'N/A' }}
Subtitle: {{ $data->subtitle ?? 'N/A' }}
Display Order: {{ $data->display_order }}
Status: @if(isset($data->statuses[$data->status])) {{ $data->statuses[$data->status]['name'] }} @else Unknown @endif
Created By: {{ $data->createdBy->name ?? 'N/A' }}
Created Date: {{ \App\Helpers\Helper::showdate($data->created_at, 'd M Y, h:i A') }}
Last Updated: {{ \App\Helpers\Helper::showdate($data->updated_at, 'd M Y, h:i A') }}
Updated By: {{ $data->updatedBy->name ?? 'N/A' }}
Banner Image
@if($data->image && is_array($data->image) && isset($data->image['original'])) Banner Image @else No Image

No image uploaded

@endif
@else

Banner not found.

Back to List
@endif
@endsection