mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-01-05 21:00:54 -05:00
* Fixes for tests * add additional fields for company settings * fixes for travis * update company settings schema * Disable client portal * Client Portal middleware * Working on client portal * hide portal * Implement notification channgels for User and ClientContact models * Push notifications onto queue * Force authentication if client portal is password protected
41 lines
1.6 KiB
PHP
41 lines
1.6 KiB
PHP
@extends('portal.default.layouts.master')
|
|
@section('header')
|
|
@stop
|
|
@section('body')
|
|
<main class="main">
|
|
<div class="container-fluid">
|
|
<div class="row" style="padding-top: 30px;">
|
|
<div class="col d-flex justify-content-center">
|
|
<div class="card w-50 p-10">
|
|
<div class="card-header">
|
|
Request Cancellation
|
|
</div>
|
|
<div class="card-body">
|
|
<table class="table table-responsive-sm table-bordered">
|
|
<tr><td style="text-align: right;">{{ctrans('texts.start_date')}}</td><td>{!! $invoice->start_date !!}</td></tr>
|
|
<tr><td style="text-align: right;">{{ctrans('texts.next_send_date')}}</td><td>{!! $invoice->next_send_date !!}</td></tr>
|
|
<tr><td style="text-align: right;">{{ctrans('texts.frequency')}}</td><td>{!! App\Models\RecurringInvoice::frequencyForKey($invoice->frequency_id) !!}</td></tr>
|
|
<tr><td style="text-align: right;">{{ctrans('texts.cycles_remaining')}}</td><td>{!! $invoice->remaining_cycles !!}</td></tr>
|
|
<tr><td style="text-align: right;">{{ctrans('texts.amount')}}</td><td>{!! $invoice->amount !!}</td></tr>
|
|
|
|
</table>
|
|
|
|
<div class="alert alert-primary" role="alert">Cancellation pending, we'll be in touch!</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
@endsection
|
|
@push('css')
|
|
@endpush
|
|
@push('scripts')
|
|
@endpush
|
|
@section('footer')
|
|
@endsection
|
|
|