@extends('layouts.partials.main') @section('Titre') Liste des SubscriptionPlan @endsection @section('tables') SubscriptionPlan @endsection @section('content-pr') @if (session()->get('success'))
{{ session()->get('success') }}

@endif @if (session()->get('error'))
{{ session()->get('error') }}

@endif

Table Plan de souscription

{{-- --}} {{-- --}} @foreach ($subs as $sub) {{-- {{dd($sub)}} --}} {{-- --}} @endforeach
N° Libellé Description Nombre de mois PrixStatusDepartementActions
{{ $i }} {{ $sub->label }} {{ $sub->description }} {{ $sub->time }} {{ $sub->price }} {{ $sub->status }}
{{ method_field('DELETE') }} {{ csrf_field() }}
@endsection