@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
plans
@can('plan.create') Crear plan @endcan
@forelse ($plans as $plan) @empty

Sin planes.

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