Nazgul
Nazgul
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
had some hope for a moment haha
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
still havent figured it, damn it its crazy
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
I dont get any errors, on create its creating the datas in database, but when i edit i see no datas in the repeater
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
and you have a snippet of the Repeater code higher
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
//PatientData model

protected $fillable = [
'version',
'date',
'wart_number',
'localisation',
'complication',
'habitual_shoe',
'nrs_score',
'treatment_pain_score',
'week_pain_score',
'scalpel_deslamination',
'five_second_treatment',
'felt_application',
'progression_proof',
'patient_id'
];



public function patient(): BelongsTo
{
return $this->belongsTo(Patient::class);
}
//PatientData model

protected $fillable = [
'version',
'date',
'wart_number',
'localisation',
'complication',
'habitual_shoe',
'nrs_score',
'treatment_pain_score',
'week_pain_score',
'scalpel_deslamination',
'five_second_treatment',
'felt_application',
'progression_proof',
'patient_id'
];



public function patient(): BelongsTo
{
return $this->belongsTo(Patient::class);
}
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
//Patient model

protected $fillable = [
'name',
'surname',
'set',
'fiscal_code',
'patient_initial',
'birthdate',
'postal_code',
'address',
'city',
'province',
'nationality',
'phone_number',
'weight',
'size',
'start_date',
'end_date',
'diagnostic_date',
'familial_wart_antecedent',
'familial_wart_antecedent_description',
'personal_wart_antecedent',
'personal_wart_antecedent_description',
'diabetes_mellitus',
'chronic_illness',
'immunosuppression',
'smoking',
'vascular_illness',
'arthritis',
'insulin',
'anti_hypertensive',
'anticoagulant',
'allergy',
'allergy_description',
];

public function patientDatas(): HasMany
{
return $this->hasMany(PatientData::class);
}
//Patient model

protected $fillable = [
'name',
'surname',
'set',
'fiscal_code',
'patient_initial',
'birthdate',
'postal_code',
'address',
'city',
'province',
'nationality',
'phone_number',
'weight',
'size',
'start_date',
'end_date',
'diagnostic_date',
'familial_wart_antecedent',
'familial_wart_antecedent_description',
'personal_wart_antecedent',
'personal_wart_antecedent_description',
'diabetes_mellitus',
'chronic_illness',
'immunosuppression',
'smoking',
'vascular_illness',
'arthritis',
'insulin',
'anti_hypertensive',
'anticoagulant',
'allergy',
'allergy_description',
];

public function patientDatas(): HasMany
{
return $this->hasMany(PatientData::class);
}
`
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
Fieldset::make()
->schema([
Repeater::make('patientDatas')
->relationship()
->schema([
Fieldset::make('Anamnesis')
->schema([
Select::make('version')
->label('Version:')
->inlineLabel()
->searchable()
->options([
1 => 'v1',
2 => 'v2',
3 => 'v3',
4 => 'v4',
]),
Fieldset::make()
->schema([
Repeater::make('patientDatas')
->relationship()
->schema([
Fieldset::make('Anamnesis')
->schema([
Select::make('version')
->label('Version:')
->inlineLabel()
->searchable()
->options([
1 => 'v1',
2 => 'v2',
3 => 'v3',
4 => 'v4',
]),
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
of my resource?
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
i dont have select in my form
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
i have every column in fillable yeah
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
and same form in my resource
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
i basically have the same models definitions
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
mmm what was the fix?
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
oh nice! lets see it
31 replies
FFilament
Created by Nazgul on 2/13/2024 in #❓┊help
Repeater datas not showing on edit
@Troner for know i've looked everywhere and cant find any solution 😦 thats why im posting here
31 replies