@extends('admin.layouts.app') @section('title', 'Banners') @section('content')

{{__('Banners')}}

{{__('All Banners listing')}}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if(!empty($banners)) @php $i=1; @endphp @foreach($banners as $datas) @php $i++; @endphp @endforeach @else @endif
{{__('ID')}} {{__('Title')}} {{__('Arabic Title')}} {{__('Image')}} {{__('Date')}} {{__('Status')}} {{__('Action')}}
{{$i}} {{$datas->title}} {{$datas->arabic_title}} {{ dateConvertFormat($datas->created_at) }} @if($datas->status=='1') Activated @else De-Activated @endif Edit Delete
{{__('No record found')}}
@endsection