Minor fixes.
This commit is contained in:
parent
a05737e0b5
commit
bcd6925d13
@ -10,6 +10,7 @@ return [
|
||||
'get_started' => 'Get started for free',
|
||||
'billing_address' => 'Billing Address',
|
||||
'see_all_details' => 'See all account details',
|
||||
'all_payments' => 'Login to view all payments',
|
||||
'received_date' => 'Received Date',
|
||||
|
||||
'last_payment' => [
|
||||
|
@ -41,7 +41,7 @@
|
||||
|
||||
<x-table.tbody>
|
||||
@foreach($documents as $item)
|
||||
<x-table.tr href="{{ route('recurring-transactions.show', $item->id) }}">
|
||||
<x-table.tr href="{{ route($showRoute, $item->id) }}">
|
||||
@if (! $hideBulkAction)
|
||||
<x-table.td class="ltr:pr-6 rtl:pl-6 hidden sm:table-cell" override="class">
|
||||
<x-index.bulkaction.single id="{{ $item->id }}" name="{{ $item->contact->name }}" />
|
||||
|
@ -18,7 +18,7 @@
|
||||
@php
|
||||
$recurring_message = trans('recurring.message_parent', [
|
||||
'type' => mb_strtolower(trans_choice($textRecurringType, 1)),
|
||||
'link' => '<a href="' . route(config('type.document.' . $document->parent->type . '.route.prefix', 'invoices') . '.show', $parent->id) . '"><u>' . $parent->id . '</u></a>'
|
||||
'link' => '<a href="' . route(config('type.document.' . $document->parent->type . '.route.prefix', 'invoices') . '.show', $parent->id) . '"><u>' . $parent->document_number . '</u></a>'
|
||||
]);
|
||||
@endphp
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
$textColor
|
||||
])
|
||||
>
|
||||
{!! $message !!}
|
||||
{!! html_entity_decode($message) !!}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
@stack('button_dashboard_start')
|
||||
@if (! user())
|
||||
<x-link href="{{ route('portal.dashboard') }}" class="px-3 py-1.5 mb-3 sm:mb-0 bg-gray-100 hover:bg-gray-200 rounded-lg text-sm font-medium leading-6">
|
||||
{{ trans('payments.all_payments') }}
|
||||
{{ trans('portal.all_payments') }}
|
||||
</x-link>
|
||||
@endif
|
||||
@stack('button_dashboard_end')
|
||||
|
Loading…
x
Reference in New Issue
Block a user