@extends('portal.default.layouts.master') @section('header') @stop @section('body')
{{ ctrans('texts.recurring_invoice')}}
{{ctrans('texts.start_date')}}{!! $invoice->start_date !!}
{{ctrans('texts.next_send_date')}}{!! $invoice->next_send_date !!}
{{ctrans('texts.frequency')}}{!! App\Models\RecurringInvoice::frequencyForKey($invoice->frequency_id) !!}
{{ctrans('texts.cycles_remaining')}}{!! $invoice->remaining_cycles !!}
{{ctrans('texts.amount')}}{!! $invoice->amount !!}
@foreach($invoice->invoices as $inv) {{ $inv->id }} - {{ $inv->amount }} @endforeach
@endsection @push('css') @endpush @push('scripts') @endpush @section('footer') @endsection