@extends('layouts.admin')
{{-- @section('heading', 'View Slides')
@section('right_top_button')
Add New
@endsection --}}
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
ID |
Photo |
Heading |
Text |
Action |
@foreach ($slides as $row)
{{ $loop->iteration }} |
|
{{ $row->heading }} |
{{ $row->text }} |
|
@endforeach
@endsection