@extends('layouts.app') @push('plugin-styles') @endpush @section('content')


{{--

Read the Official DataTables Documentation for a full list of instructions and other options.

--}}
    @foreach ($data as $item)
  • #{{ $item->orden }} - {{ $item->descripcion }} {{ $item->type == 0 ? 'Documento' : 'Liga' }}
    {!! Form::open(['route' => ['banners.destroy', $item->id], 'method'=>'DELETE', 'class' => 'd-inline form-delete']) !!} {!! Form::close() !!}
  • @endforeach
@endsection @push('plugin-scripts') @endpush @push('custom-scripts') @endpush