Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 10s
Gemini PR Review / review (pull_request) Failing after 1m21s
Laravel Larastan / larastan (pull_request) Failing after 3m8s
Laravel Pint / pint (pull_request) Successful in 2m32s
24 lines
623 B
PHP
24 lines
623 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\ProductCharacteristicsMasterResource\Pages;
|
|
|
|
use App\Filament\Resources\ProductCharacteristicsMasterResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateProductCharacteristicsMaster extends CreateRecord
|
|
{
|
|
protected static string $resource = ProductCharacteristicsMasterResource::class;
|
|
|
|
public function getTitle(): string
|
|
{
|
|
return 'Create Characteristics'; // This will replace the "New product characteristics master"
|
|
}
|
|
|
|
// public function getHeading(): string
|
|
// {
|
|
// return 'Characteristics';
|
|
// }
|
|
|
|
}
|