@extends('admin.layouts.layout') @section('content')

Home Sliders

@can('create_slider') @endcan
@include('admin.layouts.message')
@foreach ($homeSliders as $row) @endforeach
SL Image Title Subtitle Link Status
Action
{{ $row->serial_no ?? '-' }} @if ($row->image) {{ $row->title }} @else No Image @endif {{ Str::limit($row->title, 50) }} {{ Str::limit($row->subtitle, 50) }} {{ Str::limit($row->link, 50) }}
@if ($row->status == 1)
Active
@else
InActive
@endif
@can('edit_slider') @endcan @can('delete_slider')
@method('DELETE') @csrf
@endcan
@endsection @push('styles') @endpush @push('scripts') @endpush