-
Notifications
You must be signed in to change notification settings - Fork 1
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
52ebcb6
commit 39d06c6
Showing
16 changed files
with
151 additions
and
1 deletion.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
app/Filament/Resources/CategoryResource/Pages/Creating.php
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\Product\Filament\Resources\CategoryResource\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\Product\Filament\Resources\CategoryResource\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\Product\Filament\Resources\CategoryResource\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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Modules\Product\Filament\Resources\ProductResource\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\Product\Filament\Resources\ProductResource\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\Product\Filament\Resources\ProductResource\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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Modules\Product\Filament\Resources\StockResource\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\Product\Filament\Resources\StockResource\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\Product\Filament\Resources\StockResource\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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Modules\Product\Filament\Resources\StoreResource\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\Product\Filament\Resources\StoreResource\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\Product\Filament\Resources\StoreResource\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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Modules\Product\Filament\Resources\TypeResource\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\Product\Filament\Resources\TypeResource\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\Product\Filament\Resources\TypeResource\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