@extends('backend.master') @section('content')
Banner Details
@php $p = $row->image_path; $isStored = $p && \Illuminate\Support\Facades\Storage::disk('public')->exists($p); $isUrl = $p && \Illuminate\Support\Str::startsWith($p,['http://','https://']); $src = $isStored ? asset('storage/'.$p) : ($isUrl ? $p : null); @endphp @if($src) banner @elseif($p)
{{ $p }}
@else
No image
@endif
Status
{{ $row->is_active ? 'Active' : 'Inactive' }}
Sort Order
{{ $row->sort_order }}
Edit
@csrf @method('DELETE')
@endsection