hidden-mobile added for relating blade files
This commit is contained in:
		@@ -21,11 +21,11 @@
 | 
			
		||||
                <x-table>
 | 
			
		||||
                    <x-table.thead>
 | 
			
		||||
                        <x-table.tr>
 | 
			
		||||
                            <x-table.th class="w-2/12 hidden sm:table-cell">
 | 
			
		||||
                            <x-table.th class="w-2/12" hidden-mobile>
 | 
			
		||||
                                {{ trans('general.date') }}
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
                            <x-table.th class="w-3/12 hidden sm:table-cell">
 | 
			
		||||
                            <x-table.th class="w-3/12" hidden-mobile>
 | 
			
		||||
                                {{ trans('general.description') }}
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
@@ -33,7 +33,7 @@
 | 
			
		||||
                                {{ trans_choice('general.contacts', 1) }}
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
                            <x-table.th class="w-2/12 hidden sm:table-cell">
 | 
			
		||||
                            <x-table.th class="w-2/12" hidden-mobile>
 | 
			
		||||
                                {{ trans('reconciliations.deposit') }}
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
@@ -50,11 +50,11 @@
 | 
			
		||||
                    <x-table.tbody>
 | 
			
		||||
                        @foreach($transactions as $item)
 | 
			
		||||
                            <x-table.tr>
 | 
			
		||||
                                <x-table.td class="w-2/12 hidden sm:table-cell" kind="cursor-none">
 | 
			
		||||
                                <x-table.td class="w-2/12" hidden-mobile kind="cursor-none">
 | 
			
		||||
                                    <x-date date="{{ $item->paid_at }}" />
 | 
			
		||||
                                </x-table.td>
 | 
			
		||||
 | 
			
		||||
                                <x-table.td class="w-3/12 hidden sm:table-cell" kind="cursor-none">
 | 
			
		||||
                                <x-table.td class="w-3/12" hidden-mobile kind="cursor-none">
 | 
			
		||||
                                    {{ $item->description }}
 | 
			
		||||
                                </x-table.td>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -42,11 +42,11 @@
 | 
			
		||||
                <x-table>
 | 
			
		||||
                    <x-table.thead>
 | 
			
		||||
                        <x-table.tr>
 | 
			
		||||
                            <x-table.th class="ltr:pr-6 rtl:pl-6 hidden sm:table-cell" override="class">
 | 
			
		||||
                            <x-table.th class="ltr:pr-6 rtl:pl-6 hidden sm:table-cell" hidden-mobile override="class">
 | 
			
		||||
                                <x-index.bulkaction.all />
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
                            <x-table.th class="w-3/12 hidden sm:table-cell">
 | 
			
		||||
                            <x-table.th class="w-3/12" hidden-mobile>
 | 
			
		||||
                                <x-sortablelink column="created_at" title="{{ trans('general.created_date') }}" />
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
                                <x-sortablelink column="account_id" title="{{ trans_choice('general.accounts', 1) }}" />
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
                            <x-table.th class="w-2/12 hidden sm:table-cell">
 | 
			
		||||
                            <x-table.th class="w-2/12" hidden-mobile>
 | 
			
		||||
                                {{ trans('general.period') }}
 | 
			
		||||
                            </x-table.th>
 | 
			
		||||
 | 
			
		||||
@@ -72,11 +72,11 @@
 | 
			
		||||
                    <x-table.tbody>
 | 
			
		||||
                        @foreach($reconciliations as $item)
 | 
			
		||||
                            <x-table.tr href="{{ route('reconciliations.edit', $item->id) }}">
 | 
			
		||||
                                <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" hidden-mobile override="class">
 | 
			
		||||
                                    <x-index.bulkaction.single id="{{ $item->id }}" name="{{ $item->account->name }}" />
 | 
			
		||||
                                </x-table.td>
 | 
			
		||||
 | 
			
		||||
                                <x-table.td class="w-3/12 hidden sm:table-cell">
 | 
			
		||||
                                <x-table.td class="w-3/12" hidden-mobile>
 | 
			
		||||
                                    <x-slot name="first" class="flex" override="class">
 | 
			
		||||
                                        <div class="font-bold truncate">
 | 
			
		||||
                                            <x-date date="{{ $item->created_at }}" />
 | 
			
		||||
@@ -92,7 +92,7 @@
 | 
			
		||||
                                    {{ $item->account->name }}
 | 
			
		||||
                                </x-table.td>
 | 
			
		||||
 | 
			
		||||
                                <x-table.td class="w-3/12 hidden sm:table-cell">
 | 
			
		||||
                                <x-table.td class="w-3/12" hidden-mobile>
 | 
			
		||||
                                    <x-slot name="first">
 | 
			
		||||
                                        <x-date date="{{ $item->started_at }}" />
 | 
			
		||||
                                    </x-slot>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user