static a tag convert to view component

This commit is contained in:
Burak Civan
2022-08-03 14:04:32 +03:00
parent 5cb11e3ea6
commit 0dfc8df574
46 changed files with 167 additions and 138 deletions

View File

@@ -11,13 +11,14 @@
</x-slot>
@foreach($limits as $item)
<a href="javascript:;" @click="onChangePaginationLimit($event)" value="{{ $item }}"
<x-link href="javascript:;" @click="onChangePaginationLimit($event)" value="{{ $item }}"
class="w-full flex items-center text-purple px-2 h-9 leading-9 whitespace-nowrap"
override="class"
>
<span class="w-full h-full flex items-center rounded-md px-2 text-sm hover:bg-lilac-100" value="{{ $item }}">
{{ $item }}
</span>
</a>
</x-link>
@endforeach
</x-dropdown>