@extends('backend.admin.layouts.app') @section('content')

Dashboard

@forelse ($sliders as $slider) @empty @endforelse
# Preview Type Title YouTube Alternative Info Action
{{ $loop->iteration }} @if($slider->image) {{ $slider->alt ?? 'Slider image' }} @else No Image @endif {{ ucfirst($slider->type) }}
{{ $slider->title ?: '—' }}
@if($slider->description) {{ \Illuminate\Support\Str::limit($slider->description, 70) }} @endif
@if($slider->youtube_url) Open Video @else — @endif {{ $slider->alt ?: '—' }}
@csrf {{ method_field('DELETE') }}
No slider found.
@endsection