@extends('layouts.app') @section('title', 'Edit Recurring Invoice') @push('css') @endpush @section('content')

Edit {{ $recurringInvoice->profile_name }}

@csrf @method('PUT')
Customer Details
@error('customer_id')
{{ $message }}
@enderror
@error('profile_name')
{{ $message }}
@enderror
Schedule Settings
@error('start_date')
{{ $message }}
@enderror
Last Scheduled Next Run: {{ \Carbon\Carbon::parse($recurringInvoice->next_run_date)->format('d M Y') }}
Item Details
@foreach($recurringInvoice->items as $index => $itemRecord) @endforeach
Item Name Qty Rate Amount
Automation Settings
auto_send ? 'checked' : '' }}>
Automatically email the generated invoice to the customer.
Notes
Cancel
Final Summary
Subtotal {{ formatCurrency($recurringInvoice->subtotal) }}
Tax Amount {{ formatCurrency($recurringInvoice->tax_amount) }}
Use minus (-) for deduction

Total Amount ({{ getCurrencySymbol() }}) {{ number_format($recurringInvoice->total_amount, 2) }}
Current Status: {{ $recurringInvoice->status }}
@push('scripts') @endpush @endsection