@extends('model.list')
@include('web::sidebar')
@push('styles')
@endpush
@section('breadcrumb')
Inicio
Administración de Slides
@endsection
@section('card-title', 'Listado de Slides')
@section('table-header')
ID |
Imagen |
Título |
Periodo activo |
Orden |
Slider |
Web |
Acciones |
@endsection
@section('table-body')
@forelse($data as $row)
{{ $row->id }} |
|
{{ $row->name ?? '~' }} |
{{ isset($row->starts_on) ? $row->starts_on->isoFormat('L') : '~' }}–{{ isset($row->ends_on) ? $row->ends_on->isoFormat('L') : '~' }}
|
{{ $row->position }} |
{{ $row->slider->name }} |
@if ($row->is_enabled)
Si
@else
No
@endif
|
|
@empty
Sin datos para esta selección.
|
@endforelse
@endsection
@push('scripts')
@endpush