Rizky Anfasa F M
Associate Action doesn't work
I have 2 table, there is schools and students table.
School Model
Student Model
I'am implement student relation manager with associate action in school resource, but i got error like this
is my scenario true or false? that associate action must implement for has many relationship. one school has many student, one student belongs to school
2 replies
Can I am using searchable method, in SelectColumn?
In table i am using SelectColumn and using searchable method too. but, search input does'nt appear
SelectColumn::make('team_bank_account_id')
->label('Nomor Rekening Tim')
->extraAttributes(['class' => 'text-sm'])
->searchable()
->hidden(fn () => auth()->user()->cannot('update_bank_account_transaction::waiting::transaction'))
->options(function ($record) {
$teamBanks = TeamBankAccount::where('team_id', $record->team_id)
->whereState('account_status', Active::class)->get();
return $teamBanks->mapWithKeys(fn ($item) => [$item->id => "{$item->bank->name} - " . \Str::limit($item->account_number . ' ' . "($item->account_holder)", 20)]);
}),
3 replies