@extends('layouts.base') @section('content') @section('breadcrumb') @endsection
{{ isset($subscription) ? 'Modifier un abonnement' : 'Créer un abonnement' }}
@csrf @if(isset($subscription)) @method('PUT') @endif
Généré automatiquement à partir du nom
@php $monthlyPrice = isset($subscription) ? $subscription->prices->where('type', 'price_monthly')->first() : null; $yearlyPrice = isset($subscription) ? $subscription->prices->where('type', 'price_yearly')->first() : null; @endphp
Laissez vide pour un abonnement gratuit
Laissez vide pour un abonnement gratuit
is_active ?? true)) checked @endif>
visible ?? true)) checked @endif>
Annuler
@if(isset($subscription))
@csrf @method('DELETE')
@endif
@endsection