Skip to content

Commit 0d56d4e

Browse files
authored
Merge pull request #2 from TappNetwork/migrations
Migrations, Views and Labels
2 parents bd3e3ea + bb78a5b commit 0d56d4e

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,14 @@ public function panel(Panel $panel): Panel
6363
]);
6464
}
6565
```
66+
67+
### Configuring Tailwind:
68+
69+
Add this to your tailwind.config.js content section:
70+
71+
```
72+
content: [
73+
...
74+
"./vendor/tapp/**/*.blade.php",
75+
],
76+
```

config/filament-form-builder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
'admin-panel-resource-name' => 'Form',
1313

14-
'admin-panel-resource-name-plural' => 'Form',
14+
'admin-panel-resource-name-plural' => 'Forms',
1515

1616
'admin-panel-group-name' => 'Forms',
1717

src/routes.php routes/routes.php

File renamed without changes.

src/FilamentFormBuilderServiceProvider.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ public function configurePackage(Package $package): void
1717
$package->name('filament-form-builder')
1818
->hasMigration('create_dynamic_filament_form_tables')
1919
->hasConfigFile('filament-form-builder')
20+
->hasViews()
21+
->hasRoute('routes')
2022
->hasViews('filament-form-builder');
2123
}
2224

2325
public function boot()
2426
{
25-
$this->loadRoutesFrom(__DIR__.'/routes.php');
26-
27-
$this->loadViewsFrom(__DIR__.'/../resources/views', 'filament-form-builder');
27+
parent::boot();
2828

2929
Livewire::component('tapp.filament-form-builder.livewire.filament-form.show', FilamentFormShow::class);
3030
Livewire::component('tapp.filament-form-builder.livewire.filament-form-user.show', FilamentFormUserShow::class);

0 commit comments

Comments
 (0)