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

Popup Details: {{ $popup->name }}

Basic Information

Name:
{{ $popup->name }}
Link:
@if ($popup->link) {{ $popup->link }} @else Not provided @endif
Display Order:
{{ $popup->display_order }}

Status Information

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

Popup Image

@if ($popup->image) {{ $popup->name }} @else
No image available
@endif
@endsection