@extends('admin.template.layout')
@section('header')
@stop
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
@if (check_permission('banners', 'Create'))
@endif
# |
Title |
Subtitle |
Button-Text |
Button-Url |
Actions |
@foreach ($home_banners as $key => $home_banner)
{{ $key + 1 }} |
{{ $home_banner->title }} |
{{ $home_banner->subtitle }} |
{{ $home_banner->button_text }} |
{{ $home_banner->button_address }} |
|
@endforeach
@stop
@section('script')
@endsection