@extends('admin.layouts.app') @section('title', 'Banners') @section('css') @endsection @section('contents')
New Banner
@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if(isset($banners)) @foreach($banners as $banner) @endforeach @endif
Order Title thumb Content Status Action
{{ $banner->display_order }} {{ $banner->name }} {{ $banner->content }} {{ $banner->status }}
@endsection @section('js') @endsection