hidden-mobile added for relating blade files

This commit is contained in:
Burak Civan
2022-08-09 14:56:14 +03:00
parent 06c9cba9b1
commit 9572cf5df6
21 changed files with 85 additions and 85 deletions

View File

@@ -26,7 +26,7 @@
<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>
@@ -34,7 +34,7 @@
<x-sortablelink column="name" title="{{ trans('general.name') }}" />
</x-table.th>
<x-table.th class="w-4/12">
<x-table.th class="w-4/12" hidden-mobile>
<x-sortablelink column="email" title="{{ trans('general.email') }}" />
</x-table.th>
@@ -47,7 +47,7 @@
<x-table.tbody>
@foreach($users as $item)
<x-table.tr href="{{ route('users.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->name }}"
@@ -77,7 +77,7 @@
</div>
</x-table.td>
<x-table.td class="w-4/12 hidden sm:table-cell">
<x-table.td class="w-4/12" hidden-mobile>
{{ $item->email }}
</x-table.td>