@extends('layouts.admin-layout')
@section('title', 'All Slider ')
@section('content')
Slider Section
| First Heading |
Second Heading |
Image |
status |
Action |
@foreach($get_sliders as $slider)
| {{$slider->first_heading}} |
{{$slider->second_heading}} |
 ? $slider->getFirstMediaUrl('slider_image') : asset('upload/placeholder.png'))}}) |
{{$slider->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection