@extends('admin.layout.app') {{-- makes everything from admin.app appear here --}}
@section('heading', 'Hero Sliders')
@section('rightside_button')
Add New
@endsection
@section('main_content')
Photo |
Small Heading |
Large Heading |
Description |
{{-- Each iteration prints one row () in the table. --}}
@foreach ($all_data as $item)
|
{{ $item->heading_small }} |
{{ $item->heading_large }} |
{!! $item->description !!} |
Edit
Delete
|
@endforeach
@endsection