@extends('layouts.app') @section('title', 'Renew License') @section('breadcrumb') @endsection @section('content')
Current License
Key{{ $license->license_key }}
Customer{{ $license->customer?->company_name }}
Type{{ ucfirst($license->license_type) }}
Current Expiry {{ $license->expiry_date?->format('d M Y') ?? 'Lifetime' }}
Status{{ ucfirst($license->status) }}
Renewal Options
@csrf
@php $base = $license->expiry_date && !$license->isExpired() ? $license->expiry_date : now(); @endphp @foreach([ '1_year' => ['label' => '1 Year', 'date' => $base->copy()->addYear()], '2_years' => ['label' => '2 Years', 'date' => $base->copy()->addYears(2)], '3_years' => ['label' => '3 Years', 'date' => $base->copy()->addYears(3)], 'lifetime' => ['label' => 'Lifetime', 'date' => null], ] as $value => $option)
@endforeach
Cancel
@endsection @push('scripts') @endpush