-
-
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.
Merge pull request #16 from achmadhadikurnia/main
refactor: panel
- Loading branch information
Showing
2 changed files
with
28 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Kanekescom\Siasn\Simpeg\Filament\Pages; | ||
|
||
use Illuminate\Contracts\Support\Htmlable; | ||
use ShuvroRoy\FilamentSpatieLaravelBackup\Pages\Backups as BaseBackups; | ||
|
||
class Backups extends BaseBackups | ||
{ | ||
protected static ?string $navigationIcon = 'heroicon-o-cpu-chip'; | ||
|
||
public function getHeading(): string|Htmlable | ||
{ | ||
return 'Backups'; | ||
} | ||
|
||
public static function getNavigationGroup(): ?string | ||
{ | ||
return 'Tools'; | ||
} | ||
} |
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