Skip to content

Commit 37ca589

Browse files
committed
Update README to include CSS asset setup instructions for Filament Panels
1 parent 17d4818 commit 37ca589

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,24 @@
2323

2424
## 🚀 Quick Start (90 seconds)
2525

26-
### 1. Install
26+
### 1. Install Package
2727
```bash
2828
composer require relaticle/flowforge
2929
```
3030

31-
### 2. Add Position Column
31+
### 2. Include CSS Assets
32+
33+
> [!IMPORTANT]
34+
> If you have not set up a custom theme and are using Filament Panels follow the instructions in the [Filament Docs](https://filamentphp.com/docs/4.x/styling/overview#creating-a-custom-theme) first.
35+
36+
After setting up a custom theme add the plugin's views to your theme css file.
37+
38+
```css
39+
/* In your main CSS file (e.g., resources/css/app.css) */
40+
@source "../../../../vendor/relaticle/flowforge/resources/views/**/*.blade.php";
41+
```
42+
43+
### 3. Add Position Column
3244
```bash
3345
php artisan make:migration add_position_to_tasks_table
3446
```

0 commit comments

Comments
 (0)