waleedGRT
Call action method from livewire
Certainly, you're correct. I've adhered to the instructions outlined in the documentation, but I'm interested in automatically triggering the actions function and displaying the model on the screen when the page loads. Is there a way to achieve this?
5 replies
TailwindCSS safelist is not working.
import { defineConfig } from "vite";
import laravel, { refreshPaths } from "laravel-vite-plugin";
export default defineConfig({
plugins: [
laravel({
input: ["resources/css/app.css", "resources/js/app.js" , "resources/css/filament/admin/theme.css"],
refresh: [
...refreshPaths,
"app/Filament/**",
"app/Forms/Components/**",
"app/Livewire/**",
"app/Infolists/Components/**",
"app/Providers/Filament/**",
"app/Tables/Columns/**",
],
}),
],
});
16 replies
TailwindCSS safelist is not working.
I verified that arbitrary values function properly in the safelist, as discussed in this GitHub thread: https://github.com/tailwindlabs/tailwindcss/discussions/7908
16 replies
Table with Custom Array/Collection Data
Maybe this will help
https://filamentphp.com/community/how-to-consume-an-external-api-with-filament-tables
5 replies