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