reconcile responsive & share link console error fixed

This commit is contained in:
Burak Civan
2022-08-18 12:30:52 +03:00
parent 9974f9e102
commit 44a225279e
4 changed files with 17 additions and 17 deletions

View File

@@ -21,7 +21,7 @@
<x-table>
<x-table.thead>
<x-table.tr>
<x-table.th class="w-2/12" hidden-mobile>
<x-table.th class="w-6/12 lg:w-2/12">
{{ trans('general.date') }}
</x-table.th>
@@ -37,7 +37,7 @@
{{ trans('reconciliations.deposit') }}
</x-table.th>
<x-table.th class="w-6/12 lg:w-2/12">
<x-table.th class="w-6/12 lg:w-2/12" hidden-mobile>
{{ trans('reconciliations.withdrawal') }}
</x-table.th>
@@ -50,7 +50,7 @@
<x-table.tbody>
@foreach($transactions as $item)
<x-table.tr>
<x-table.td class="w-2/12" hidden-mobile kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-date date="{{ $item->paid_at }}" />
</x-table.td>
@@ -63,19 +63,19 @@
</x-table.td>
@if ($item->isIncome())
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-money :amount="$item->amount" hidden-mobile :currency="$item->currency_code" convert />
</x-table.td>
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-empty-data />
</x-table.td>
@else
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-empty-data />
</x-table.td>
<x-table.td class="w-6/12 lg:w-2/12" kind="cursor-none">
<x-table.td class="w-6/12 lg:w-2/12" hidden-mobile kind="cursor-none">
<x-money :amount="$item->amount" :currency="$item->currency_code" convert />
</x-table.td>
@endif