@extends('admin.layouts.app') @section('title', 'Slider') @section('header', 'Slider') @section('content')
@forelse($sliders as $slider) @empty @endforelse
Başlık Durum
{{ $slider->title }}
@if($slider->description)
{{ Str::limit(strip_tags($slider->description), 50) }}
@endif @if($slider->link_url) {{ $slider->link_text ?? 'Bağlantıyı Görüntüle' }} @endif
is_active ? 'checked' : '' }} data-url="{{ route('admin.sliders.toggle-status', $slider) }}">
@csrf @method('DELETE')
Henüz slider bulunmuyor
@if($sliders->hasPages()) @endif
@push('styles') @endpush @push('scripts') @endpush @endsection