@extends('backend.layouts.master')
@section('title') {{ __('sidebar.banner_title_name') }} @endsection
@section('main-content')
@include('backend.layouts.notification')
@if(count($banners)>0)
{{ __('sidebar.bann_number') }} |
{{ __('sidebar.bann_title') }} |
Subtitle |
Button |
{{ __('sidebar.bann_photo') }} |
{{ __('sidebar.bann_status') }} |
{{ __('sidebar.bann_action') }} |
@foreach($banners as $banner)
{{$banner->id}} |
{{$banner->title}} |
{{$banner->subtitle}} |
{{$banner->button}} |
@if($banner->photo)
@else
@endif
|
@if($banner->status=='active')
{{$banner->status}}
@else
{{$banner->status}}
@endif
|
|
@endforeach
@else
No banners found!!! Please add banner
@endif
@endsection