@extends('layouts.admin') @section('title', tr('bannerimages')) @section('content-header', tr('bannerimages')) @section('breadcrumb')
  • {{ tr('home') }}
  • {{ tr('bannerimages') }}
  • @endsection @section('content') @include('notification.notify')
    {{ tr('bannerimages') }} {{ tr('add_bannerimage') }}
    @foreach($banners as $i => $banner_details) @endforeach
    {{ tr('id') }} {{ tr('banner_title') }} {{ tr('banner_text') }} {{ tr('image') }} {{ tr('view') }} {{ tr('status') }} {{ tr('action') }}
    {{ showEntries($_GET,$i+1) }} {{ $banner_details->banner_title ? $banner_details->banner_title : "-" }} {{ $banner_details->banner_text ? $banner_details->banner_text : "-" }} {{ tr('view') }} @if($banner_details->status == COMMON_APPROVED) {{ tr('approved') }} @else {{ tr('pending') }} @endif
    {{ $banners->links() }}
    @endsection