@extends('admin.layouts.master')
@section('title', 'List of Slides')
@section('content')
| # |
Image |
Title |
Link |
Status |
Actions |
@foreach ($sliders as $id => $slider)
| {{ ++$id }} |
|
{{ $slider->title }} |
{{ $slider->btn_link }} |
@if ($slider->status == 1)
Published
@else
Draft
@endif
|
|
@endforeach
@endsection