-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: added livewire tests for filament resources & bump dependencies (
#759)
- Loading branch information
Showing
40 changed files
with
4,524 additions
and
451 deletions.
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
31 changes: 31 additions & 0 deletions
31
app/Filament/Resources/List/External/ExternalEntry/Pages/EditExternalEntry.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,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Filament\Resources\List\External\ExternalEntry\Pages; | ||
|
||
use App\Filament\Resources\List\External\ExternalEntry; | ||
use App\Filament\Resources\Base\BaseEditResource; | ||
|
||
/** | ||
* Class EditExternalEntry. | ||
*/ | ||
class EditExternalEntry extends BaseEditResource | ||
{ | ||
protected static string $resource = ExternalEntry::class; | ||
|
||
/** | ||
* Get the header actions available. | ||
* | ||
* @return array | ||
* | ||
* @noinspection PhpMissingParentCallCommonInspection | ||
*/ | ||
protected function getHeaderActions(): array | ||
{ | ||
return array_merge( | ||
parent::getHeaderActions(), | ||
[], | ||
); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
app/Filament/Resources/List/External/Pages/CreateExternalProfile.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,16 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace App\Filament\Resources\List\External\Pages; | ||
|
||
use App\Filament\Resources\Base\BaseCreateResource; | ||
use App\Filament\Resources\List\ExternalProfile; | ||
|
||
/** | ||
* Class CreateExternalProfile. | ||
*/ | ||
class CreateExternalProfile extends BaseCreateResource | ||
{ | ||
protected static string $resource = ExternalProfile::class; | ||
} |
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
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
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
91 changes: 0 additions & 91 deletions
91
app/Filament/TableActions/Models/List/ExternalProfile/CreateExternalProfileTableAction.php
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.