@foreach($banners as $banner) @endforeach
# Banner Descripción Tipo Url Activo Action
{{ $banner->id }} {{ $banner->descripcion }} @if($banner->tipo == 1) Banner Principal @elseif($banner->tipo == 2) Banner Secundario @else Banner Mini @endif {{ $banner->url }} {{ $banner->estado == 1 ? 'Si' : 'No' }} {!! Form::open(['route' => ['admin.banners.destroy', $banner->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}