Merge branch 'akaunting:master' into master

This commit is contained in:
Burak Civan 2022-06-02 16:50:39 +03:00 committed by GitHub
commit f0cd139a85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 23 additions and 8 deletions

View File

@ -30,8 +30,10 @@ return [
| |
*/ */
'deprecations' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 'deprecations' => [
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
'trace' => false,
],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -79,22 +81,34 @@ return [
'papertrail' => [ 'papertrail' => [
'driver' => 'monolog', 'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'), 'level' => env('LOG_LEVEL', 'debug'),
'handler' => SyslogUdpHandler::class, 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [ 'handler_with' => [
'host' => env('PAPERTRAIL_URL'), 'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'), 'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL') . ':' . env('PAPERTRAIL_PORT'),
], ],
], ],
'stderr' => [ 'stderr' => [
'driver' => 'monolog', 'driver' => 'monolog',
'handler' => StreamHandler::class, 'level' => env('LOG_LEVEL', 'debug'),
'handler' => env('LOG_STDERR_HANDLER', SyslogUdpHandler::class),
'formatter' => env('LOG_STDERR_FORMATTER'), 'formatter' => env('LOG_STDERR_FORMATTER'),
'with' => [ 'with' => [
'stream' => 'php://stderr', 'stream' => 'php://stderr',
], ],
], ],
'stdout' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => env('LOG_STDOUT_HANDLER', SyslogUdpHandler::class),
'formatter' => env('LOG_STDOUT_FORMATTER'),
'with' => [
'stream' => 'php://stdout',
],
],
'syslog' => [ 'syslog' => [
'driver' => 'syslog', 'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'), 'level' => env('LOG_LEVEL', 'debug'),

View File

@ -10,6 +10,7 @@ return [
'get_started' => 'Get started for free', 'get_started' => 'Get started for free',
'billing_address' => 'Billing Address', 'billing_address' => 'Billing Address',
'see_all_details' => 'See all account details', 'see_all_details' => 'See all account details',
'all_payments' => 'Login to view all payments',
'received_date' => 'Received Date', 'received_date' => 'Received Date',
'last_payment' => [ 'last_payment' => [

View File

@ -41,7 +41,7 @@
<x-table.tbody> <x-table.tbody>
@foreach($documents as $item) @foreach($documents as $item)
<x-table.tr href="{{ route('recurring-transactions.show', $item->id) }}"> <x-table.tr href="{{ route($showRoute, $item->id) }}">
@if (! $hideBulkAction) @if (! $hideBulkAction)
<x-table.td class="ltr:pr-6 rtl:pl-6 hidden sm:table-cell" override="class"> <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 }}" /> <x-index.bulkaction.single id="{{ $item->id }}" name="{{ $item->contact->name }}" />

View File

@ -18,7 +18,7 @@
@php @php
$recurring_message = trans('recurring.message_parent', [ $recurring_message = trans('recurring.message_parent', [
'type' => mb_strtolower(trans_choice($textRecurringType, 1)), '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 @endphp

View File

@ -10,7 +10,7 @@
$textColor $textColor
]) ])
> >
{!! $message !!} {!! html_entity_decode($message) !!}
</p> </p>
</div> </div>

View File

@ -21,7 +21,7 @@
@stack('button_dashboard_start') @stack('button_dashboard_start')
@if (! user()) @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"> <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> </x-link>
@endif @endif
@stack('button_dashboard_end') @stack('button_dashboard_end')