@extends('layouts.app-general') @section('content')

BANNERS

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE BANNERS {{ $banners->total() }}
@foreach($banners as $banner) @endforeach
BANNER ORDEN ESTADO CREACIÓN
@if(isset($banner->image)) image}") }}" alt="" style="width:40px;height:40px;border-radius:10px;"> @endif {{ $banner->order }} @if($banner->status==1) Activada @else Desactivada @endif {{ $banner->created_at }}
@if(count($banners)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $banners])
@endsection