This commit is contained in:
Denis Duliçi
2021-02-12 23:05:50 +03:00
parent a64fe6f779
commit 8cdb9a2a21
6 changed files with 13 additions and 13 deletions

View File

@@ -16,6 +16,11 @@ return [
'description' => 'Set fiscal year, time zone, date format and more locals',
'financial_start' => 'Financial Year Start',
'timezone' => 'Time Zone',
'financial_denote' => [
'title' => 'Financial Year Denote',
'begins' => 'By the year in which it begins',
'ends' => 'By the year in which it ends',
],
'date' => [
'format' => 'Date Format',
'separator' => 'Date Separator',
@@ -36,11 +41,6 @@ return [
'total' => 'At total',
'both' => 'Both line and total',
],
'financial_year_denote' => [
'title' => 'Financial Year Denote',
'begins' => 'By the year it begins',
'ends' => 'By the year it ends',
],
],
'invoice' => [

View File

@@ -20,7 +20,7 @@
<div class="row">
{{ Form::dateGroup('financial_start', trans('settings.localisation.financial_start'), 'calendar', ['id' => 'financial_start', 'class' => 'form-control datepicker', 'show-date-format' => 'j F', 'date-format' => 'd-m', 'autocomplete' => 'off'], setting('localisation.financial_start')) }}
{{ Form::selectGroup('financial_year_denote', trans('settings.localisation.financial_year_denote.title'), 'calendar', $financial_year_denote_options, setting('localisation.financial_year_denote'), []) }}
{{ Form::selectGroup('financial_denote', trans('settings.localisation.financial_denote.title'), 'calendar', $financial_denote_options, setting('localisation.financial_denote'), []) }}
{{ Form::selectGroupGroup('timezone', trans('settings.localisation.timezone'), 'globe', $timezones, setting('localisation.timezone'), []) }}