Files
nexusphp/app/Filament/Resources/System/SectionResource/RelationManagers/TaxonomyStandardsRelationManager.php

22 lines
602 B
PHP

<?php
namespace App\Filament\Resources\System\SectionResource\RelationManagers;
use Filament\Forms;
use Filament\Resources\Form;
use Filament\Resources\RelationManagers\RelationManager;
use Filament\Resources\Table;
use Filament\Tables;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\SoftDeletingScope;
class TaxonomyStandardsRelationManager extends TaxonomySourcesRelationManager
{
protected static string $relationship = 'taxonomy_standard';
protected static ?string $recordTitleAttribute = 'name';
protected static ?string $torrentField = 'standard';
}