Table Builder installation problem #14749
Unanswered
sankar-dev2024
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Table builder
Package Version
v3.0.0
How can we help you?
Hello
i am facing some problem when i am installing the table builder, after install i cant see the button in the log in screen.
my objective is to use the table builder with some custom theme for this i done the following, i am also a newbie
Laravel Jetstream -> Livewire
i have taken a screenshot of login screen
then i installed the table builder
composer require filament/tables:"^3.2" -W
php artisan filament:install --tables
npm install tailwindcss @tailwindcss/forms @tailwindcss/typography postcss postcss-nesting autoprefixer --save-dev
my tailwind.config.js my file details
import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import preset from './vendor/filament/support/tailwind.config.preset'
/** @type {import('tailwindcss').Config} */
export default {
presets: [preset],
};
added the below line in app.css
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind variants;
my postcss.config.js
export default {
plugins: {
'tailwindcss/nesting': 'postcss-nesting',
tailwindcss: {},
autoprefixer: {},
},
}
now after running npm run dev i cant see the login button in the screen its disappeared.
please help me to fix this issue
Beta Was this translation helpful? Give feedback.
All reactions