@extends('backend.master') @section('content')
| # | Image | Sort | Status | Actions |
|---|---|---|---|---|
| {{ $b->id }} |
@php
$p = $b->image_path;
$isStored = $p && \Illuminate\Support\Facades\Storage::disk('public')->exists($p);
$isUrl = $p && \Illuminate\Support\Str::startsWith($p,['http://','https://']);
@endphp
@if($isStored)
{{ $p }}
@else
None
@endif
|
{{ $b->sort_order }} | {{ $b->is_active ? 'Active' : 'Inactive' }} | |
| No banners | ||||