diff --git a/public/css/custom.css b/public/css/custom.css index 10e1d247d..82aa5d23d 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -717,6 +717,24 @@ table .align-items-center td span.badge { /*--------Text Pre Nowrap Finish--------*/ +/*--------Table Without toggle button--------*/ +.tr-py +{ + padding-top: 5px; + padding-bottom: 5px; +} +/*--------Table Without toggle button Finish--------*/ + + +/*--------Table No Records--------*/ +.nr-py +{ + padding-top: 5px; + padding-bottom: 5px; +} +/*--------Table No Records Finish--------*/ + + /*--------Modal Dialog Resizing--------*/ @media (min-width: 576px) { diff --git a/resources/views/banking/transactions/index.blade.php b/resources/views/banking/transactions/index.blade.php index 5997d2f1d..1dd9fc230 100644 --- a/resources/views/banking/transactions/index.blade.php +++ b/resources/views/banking/transactions/index.blade.php @@ -46,7 +46,7 @@ @foreach($transactions as $item) - + @date($item->paid_at) {{ $item->account->name }} {{ trans_choice('general.' . Str::plural($item->type), 1) }} diff --git a/resources/views/portal/invoices/index.blade.php b/resources/views/portal/invoices/index.blade.php index ba17527c9..3fa4d4815 100644 --- a/resources/views/portal/invoices/index.blade.php +++ b/resources/views/portal/invoices/index.blade.php @@ -36,12 +36,12 @@ @foreach($invoices as $item) - + {{ $item->invoice_number }} @money($item->amount, $item->currency_code, true) @date($item->invoiced_at) @date($item->due_at) - {{ trans('invoices.statuses.' . $item->status) }} + {{ trans('invoices.statuses.' . $item->status) }} @endforeach diff --git a/resources/views/portal/payments/index.blade.php b/resources/views/portal/payments/index.blade.php index 9b2d97b79..7b130d90a 100644 --- a/resources/views/portal/payments/index.blade.php +++ b/resources/views/portal/payments/index.blade.php @@ -35,7 +35,7 @@ @foreach($payments as $item) - + @date($item->paid_at) @money($item->amount, $item->currency_code, true) {{ $payment_methods[$item->payment_method] }} diff --git a/resources/views/purchases/bills/show.blade.php b/resources/views/purchases/bills/show.blade.php index 0cbf87ec6..0883f3e12 100644 --- a/resources/views/purchases/bills/show.blade.php +++ b/resources/views/purchases/bills/show.blade.php @@ -499,7 +499,7 @@
- +
@@ -509,7 +509,7 @@ @foreach($bill->histories as $history) - + @@ -545,7 +545,7 @@ @if ($bill->transactions->count()) @foreach($bill->transactions as $transaction) - + @@ -575,7 +575,7 @@ @else diff --git a/resources/views/purchases/vendors/show.blade.php b/resources/views/purchases/vendors/show.blade.php index e419551b6..725e882c8 100644 --- a/resources/views/purchases/vendors/show.blade.php +++ b/resources/views/purchases/vendors/show.blade.php @@ -123,7 +123,7 @@ @foreach($transactions as $item) - + @@ -155,12 +155,12 @@ @foreach($bills as $item) - + - + @endforeach diff --git a/resources/views/sales/customers/show.blade.php b/resources/views/sales/customers/show.blade.php index 883c799a2..ab4b9ab1e 100644 --- a/resources/views/sales/customers/show.blade.php +++ b/resources/views/sales/customers/show.blade.php @@ -104,11 +104,11 @@ -
+
-
{{ trans('general.date') }}
@date($history->created_at) {{ trans('bills.statuses.' . $history->status) }} {{ $history->description }}
@date($transaction->paid_at) @money($transaction->amount, $transaction->currency_code, true) {{ $transaction->account->name }}
-
+
{{ trans('general.no_records') }}
@date($item->paid_at) @money($item->amount, $item->currency_code, true) {{ $item->category ? $item->category->name : trans('general.na') }}
{{ $item->bill_number }} @money($item->amount, $item->currency_code, true) @date($item->billed_at) @date($item->due_at){{ trans('bills.statuses.' . $item->status) }}{{ trans('bills.statuses.' . $item->status) }}
+
@@ -119,7 +119,7 @@ @foreach($transactions as $item) - + @@ -138,7 +138,7 @@
-
{{ trans('general.date') }}
@date($item->paid_at) @money($item->amount, $item->currency_code, true) {{ $item->category ? $item->category->name : trans('general.na') }}
+
@@ -150,12 +150,12 @@ @foreach($invoices as $item) - + - + @endforeach diff --git a/resources/views/sales/invoices/show.blade.php b/resources/views/sales/invoices/show.blade.php index 814e8a336..0c4a960c0 100644 --- a/resources/views/sales/invoices/show.blade.php +++ b/resources/views/sales/invoices/show.blade.php @@ -548,7 +548,7 @@
-
{{ trans_choice('general.numbers', 1) }}
{{ $item->invoice_number }} @money($item->amount, $item->currency_code, true) @date($item->invoiced_at) @date($item->due_at){{ trans('invoices.statuses.' . $item->status) }}{{ trans('invoices.statuses.' . $item->status) }}
+
@@ -558,7 +558,7 @@ @foreach($invoice->histories as $history) - + @@ -594,7 +594,7 @@ @if ($invoice->transactions->count()) @foreach($invoice->transactions as $transaction) - + @@ -635,7 +635,7 @@ @else diff --git a/resources/views/widgets/account_balance.blade.php b/resources/views/widgets/account_balance.blade.php index f9cd2974b..375a966f9 100644 --- a/resources/views/widgets/account_balance.blade.php +++ b/resources/views/widgets/account_balance.blade.php @@ -12,7 +12,7 @@ @foreach($accounts as $item) - + diff --git a/resources/views/widgets/latest_expenses.blade.php b/resources/views/widgets/latest_expenses.blade.php index f82241a2c..e6cc1b641 100644 --- a/resources/views/widgets/latest_expenses.blade.php +++ b/resources/views/widgets/latest_expenses.blade.php @@ -14,7 +14,7 @@ @if ($transactions->count()) @foreach($transactions as $item) - + @@ -23,7 +23,7 @@ @else diff --git a/resources/views/widgets/latest_income.blade.php b/resources/views/widgets/latest_income.blade.php index f82241a2c..e6cc1b641 100644 --- a/resources/views/widgets/latest_income.blade.php +++ b/resources/views/widgets/latest_income.blade.php @@ -14,7 +14,7 @@ @if ($transactions->count()) @foreach($transactions as $item) - + @@ -23,7 +23,7 @@ @else
{{ trans('general.date') }}
@date($history->created_at) {{ trans('invoices.statuses.' . $history->status) }} {{ $history->description }}
@date($transaction->paid_at) @money($transaction->amount, $transaction->currency_code, true) {{ $transaction->account->name }}
-
+
{{ trans('general.no_records') }}
{{ $item->name }} @money($item->balance, $item->currency_code, true)
@date($item->paid_at) {{ $item->category->name }} @money($item->amount, $item->currency_code, true)
-
+
{{ trans('general.no_records') }}
@date($item->paid_at) {{ $item->category->name }} @money($item->amount, $item->currency_code, true)
-
+
{{ trans('general.no_records') }}