@extends('layouts.admin.master') @section('title') {{ __('Sliders') }} @endsection @push('css') @endpush @section('content') @component('components.breadcrumb') @slot('breadcrumb_title')

{{ __('Sliders') }}

@endslot @endcomponent
@foreach ($sliders as $slider) @endforeach
{{ __('Title') }} {{ __('Description') }} {{ __('Image') }} {{ __('Language') }} {{ __('Status') }} {{ __('Action') }}
{{ $slider->name }} {!! $slider->description !!} {{ $slider->language->name }} {{ $slider->status }}
{{ __('master.edit') }}
@csrf @method('delete')
@push('scripts') @include('dashbord.include.custom-datatable') @endpush @endsection