Skip to content

Instantly share code, notes, and snippets.

@dakala
dakala / tom-select.blade.php
Created February 2, 2022 11:02 — forked from mithicher/tom-select.blade.php
Tom Select Livewire Blade Component
/* Component Usage
// Data for options
$users = \App\User::limit(6)->get()->transform(fn($user) => [
'id' => $user->id,
'title' => $user->name,
'subtitle' => $user->email
]);
// Usage in view