@extends('backend.layouts.main') @section('title') Slider Details @endsection @section('styles') @endsection @section('content')

Slider Details: {{ $slider->name }}

@if (session('success')) @endif @if (session('error')) @endif

Basic Information

Name:
{{ $slider->name }}
Link:
@if ($slider->link) {{ $slider->link }} @else Not provided @endif
Description:
{{ $slider->short_description ?? 'Not provided' }}
Display Order:
{{ $slider->display_order }}

Status Information

Status:
@if ($slider->is_published) Published @else Draft @endif
Created:
{{ $slider->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $slider->updated_at->format('M d, Y H:i') }}

Slider Image

@if ($slider->image) {{ $slider->name }} @else
No image available
@endif
@endsection @section('scripts') @endsection