@extends('dashboard::layouts.layout')
@push('css')
@endpush
@push('js')
@endpush
@push('header')
@endpush
@section('content')
| # |
title |
status |
sortable |
creator |
Url |
|
@foreach ($sliders as $slider)
| {{$slider->id }} |
{{$slider->title}}
|
|
{{$slider->sortable}}
|
{{$slider->user->name}}
|
{{$slider->linkable ? ' linkable ': 'not linkable'}}
|
|
@endforeach
{{$sliders->withQueryString()->links()}}
@stop