@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
campañas
@can('campan.create') Crear Campaña @endcan
@forelse ($campans as $campan) @empty

Sin campañas.

@endforelse
Id Nombre Opciones
{{$campan->id}} {{$campan->name}} @can('campan.edit') @endcan @can('campan.destroy')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @include('layouts._partials.tablaScript') @include('layouts._partials.delete') @endsection