-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3a4ac0
commit 71206b2
Showing
4 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Modules\Fleet\Filament\Resources\FleetResource\Pages; | ||
|
||
use Modules\Base\Filament\Resources\Pages\CreatingBase; | ||
|
||
// Class List that extends ListBase | ||
class Creating extends CreatingBase | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Modules\Fleet\Filament\Resources\FleetResource\Pages; | ||
|
||
use Modules\Base\Filament\Resources\Pages\EditingBase; | ||
|
||
// Class List that extends ListBase | ||
class Editing extends EditingBase | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Modules\Fleet\Filament\Resources\FleetResource\Pages; | ||
|
||
use Modules\Base\Filament\Resources\Pages\ListingBase; | ||
|
||
// Class List that extends ListBase | ||
class Listing extends ListingBase | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters