@extends('layouts.admin-layout')
@section('title', 'All Slider ')
@section('content')
Slider Section
| S.N. |
First Heading |
Second Heading |
status |
Action |
@foreach($get_sliders as $slider)
| {{ $loop->iteration }} |
{{$slider->first_heading}} |
{{$slider->second_heading}} |
{{$slider->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection