Craig Potter
Whats the best way to use Filament Tables in a Custom Package
Yeah I did think of that. Using Spatie Package Tools and it has an install command built in. Might have to look and see if you can manually call artisan commands or something 🤔
7 replies
Pasting in to a tagsInput splits a string
Looks like it was already reported and fixed - https://github.com/filamentphp/filament/issues/9313
8 replies
Pasting in to a tagsInput splits a string
Hahaha sorry @awcodes only just saw your reply.
I will try and report it on GH later today.
I did find a semi-work around however for anyone experiencing the same issue. @carloscapote
If you add
->splitKeys([' '])
it appears to work e.g.
This wouldn't work if you have spaces in your tags but for single word tags it appears to work for now.8 replies
How to use current Login
Hmm not sure that will work.... Or not completely....
I think I will need to extend
vendor/filament/filament/src/Http/Middleware/Authenticate.php
and overwrite the protected function redirectTo($request)
method.
Need to make sure to use my custom Middleware in the filament config under auth as well 🙂13 replies