File tree 7 files changed +14
-11
lines changed
7 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ php artisan vendor:publish --tag="filament-forms-config"
37
37
Add this plugin to a panel on ` plugins() ` method (e.g. in ` app/Providers/Filament/AdminPanelProvider.php ` ).
38
38
39
39
``` php
40
- use Tapp\FilamentSurvey \FilamentFormsPlugin;
40
+ use Tapp\FilamentForms \FilamentFormsPlugin;
41
41
42
42
public function panel(Panel $panel): Panel
43
43
{
Original file line number Diff line number Diff line change 39
39
},
40
40
"autoload" : {
41
41
"psr-4" : {
42
- "Tapp\\ FilamentSurvey \\ " : " src"
42
+ "Tapp\\ FilamentForms \\ " : " src"
43
43
}
44
44
},
45
45
"config" : {
52
52
"extra" : {
53
53
"laravel" : {
54
54
"providers" : [
55
- " Tapp\\ FilamentForms\\ FilamentFormServiceProvider "
55
+ " Tapp\\ FilamentForms\\ FilamentFormsServiceProvider "
56
56
]
57
57
}
58
58
},
Original file line number Diff line number Diff line change 3
3
namespace Tapp \FilamentForms \Filament \Resources ;
4
4
5
5
use Filament \Forms ;
6
- use Filament \Forms \Form ;
7
- use Filament \Resources \Resource ;
8
6
use Filament \Tables ;
7
+ use Filament \Forms \Form ;
9
8
use Filament \Tables \Table ;
10
- use Tapp \FilamentForms \Filament \Resources \FilamentFormResource \RelationManagers \FilamentFormFieldsRelationManager ;
11
- use Tapp \FilamentForms \Filament \Resources \FilamentFormResource \RelationManagers \FilamentFormUsersRelationManager ;
9
+ use Filament \Resources \Resource ;
12
10
use Tapp \FilamentForms \Models \FilamentForm ;
11
+ use Tapp \FilamentForms \Filament \Resources \FilamentFormResource \Pages \EditFilamentForm ;
12
+ use Tapp \FilamentForms \Filament \Resources \FilamentFormResource \Pages \ListFilamentForms ;
13
+ use Tapp \FilamentForms \Filament \Resources \FilamentFormResource \Pages \CreateFilamentForm ;
14
+ use Tapp \FilamentForms \Filament \Resources \FilamentFormResource \RelationManagers \FilamentFormUsersRelationManager ;
15
+ use Tapp \FilamentForms \Filament \Resources \FilamentFormResource \RelationManagers \FilamentFormFieldsRelationManager ;
13
16
14
17
class FilamentFormResource extends Resource
15
18
{
Original file line number Diff line number Diff line change 5
5
use Filament \Contracts \Plugin ;
6
6
use Filament \Panel ;
7
7
8
- class FilamentSurveyPlugin implements Plugin
8
+ class FilamentFormsPlugin implements Plugin
9
9
{
10
10
public static function make (): static
11
11
{
Original file line number Diff line number Diff line change 5
5
use Spatie \LaravelPackageTools \Package ;
6
6
use Spatie \LaravelPackageTools \PackageServiceProvider ;
7
7
8
- class FilamentSurveyServiceProvider extends PackageServiceProvider
8
+ class FilamentFormsServiceProvider extends PackageServiceProvider
9
9
{
10
10
public static string $ name = 'filament-forms ' ;
11
11
Original file line number Diff line number Diff line change 11
11
use Tapp \FilamentForms \Models \FilamentFormField ;
12
12
use Tapp \FilamentForms \Models \FilamentFormUser ;
13
13
14
- class DynamicForm extends Component implements HasForms
14
+ class Show extends Component implements HasForms
15
15
{
16
16
use InteractsWithForms;
17
17
Original file line number Diff line number Diff line change 12
12
use Livewire \Component ;
13
13
use Tapp \FilamentForms \Models \FilamentFormUser ;
14
14
15
- class DynamicEntry extends Component implements HasForms, HasInfolists
15
+ class Show extends Component implements HasForms, HasInfolists
16
16
{
17
17
use InteractsWithForms;
18
18
use InteractsWithInfolists;
You can’t perform that action at this time.
0 commit comments