delboy1978uk
delboy1978uk
FFilament
Created by delboy1978uk on 4/1/2025 in #❓┊help
Form select relationship help
thanks for your help
9 replies
FFilament
Created by delboy1978uk on 4/1/2025 in #❓┊help
Form select relationship help
the has one and belongs to were the wrong way around!
9 replies
FFilament
Created by delboy1978uk on 4/1/2025 in #❓┊help
Form select relationship help
if i change the db value to the no instead of the id, in my table of users, a text column resource.name works, so i imagine the relationship is ok?
9 replies
FFilament
Created by delboy1978uk on 4/1/2025 in #❓┊help
Form select relationship help
where should i try the dump?
9 replies
FFilament
Created by delboy1978uk on 4/1/2025 in #❓┊help
Form select relationship help
its also nullable if that makes a difference? although no error is thrown so probably not
9 replies
FFilament
Created by delboy1978uk on 4/1/2025 in #❓┊help
Form select relationship help
Hi @Mohamed Ayaou so in my User class I have this :
public function resource(): HasOne
{
return $this->hasOne(Resource::class, 'no', 'resource_no');
}
public function resource(): HasOne
{
return $this->hasOne(Resource::class, 'no', 'resource_no');
}
And in my Resource class I have this:
public function user(): BelongsTo
{
return $this->belongsTo(User::class, 'resource_no', 'no');
}
public function user(): BelongsTo
{
return $this->belongsTo(User::class, 'resource_no', 'no');
}
The resource_no as I say is on the users table, and points to the no of the resources table
9 replies
FFilament
Created by delboy1978uk on 3/31/2025 in #❓┊help
edit/delete modal from within relationship modal
essentially this is a relationship within a relationship, is it better to redirect and not do this in a modal?
6 replies
FFilament
Created by delboy1978uk on 3/31/2025 in #❓┊help
edit/delete modal from within relationship modal
No description
6 replies
FFilament
Created by delboy1978uk on 3/31/2025 in #❓┊help
edit/delete modal from within relationship modal
@LeandroFerreira thanks, i tried that, but my action displays the modal in the screenshot, so i cant use replacemounted action, since there are two! I'm now trying this
->registerModalActions([
Action::make('edit')
->action(fn (OrderItemProcessStep $record) => $record->report()),
Action::make('delete')
->requiresConfirmation()
->action(fn (OrderItemProcessStep $record) => $record->report()),
])
->registerModalActions([
Action::make('edit')
->action(fn (OrderItemProcessStep $record) => $record->report()),
Action::make('delete')
->requiresConfirmation()
->action(fn (OrderItemProcessStep $record) => $record->report()),
])
but now my issue is that it isnt passing the row in the modal, rather the row in the relation table, the order item, so i don't know if this will work either
6 replies
FFilament
Created by delboy1978uk on 3/18/2025 in #❓┊help
always filter?
thank you so much @Dennis Koch 🙏
4 replies
FFilament
Created by delboy1978uk on 3/17/2025 in #❓┊help
dispatched event not being listened to
Can anyone help? My DataCreated event is listened to in app/Providers/EventServiceProvider , and like i say if we call create a row via our API using POST, the event is dispatched and the listener triggers, however, when dispatching the event from the create page, nothing is triggered.
2 replies
FFilament
Created by delboy1978uk on 3/14/2025 in #❓┊help
Having trouble setting up a belongs to many select
but the dropdown looks correct 🙂
7 replies
FFilament
Created by delboy1978uk on 3/14/2025 in #❓┊help
Having trouble setting up a belongs to many select
No description
7 replies
FFilament
Created by delboy1978uk on 3/14/2025 in #❓┊help
Having trouble setting up a belongs to many select
@Jordy thank you so much! That's exactly all that I needed, machineCenters.qualityControlSteps. Have a great day!
7 replies
FFilament
Created by delboy1978uk on 3/14/2025 in #❓┊help
Having trouble setting up a belongs to many select
if i change the call to relationship() to use qualityControlSteps then the select throws an exception:
Filament\Support\Services\RelationshipJoiner::prepareQueryForNoConstraints(): Argument #1 ($relationship) must be of type Illuminate\Database\Eloquent\Relations\Relation, null given
Filament\Support\Services\RelationshipJoiner::prepareQueryForNoConstraints(): Argument #1 ($relationship) must be of type Illuminate\Database\Eloquent\Relations\Relation, null given
because it is checking for that method on the quality control object
7 replies
FFilament
Created by delboy1978uk on 3/12/2025 in #❓┊help
Repeater custom create function?
I suppose I can make a function in a service to prepare what I need, but heres another question then : for my file upload i use afterStateUpdated and $setto set te original file name, but that doesn't appear in the data that the mutation method gives, how can i fetch it from there? $get doesn't work because its on the repeater and not the upload field where set was used
5 replies
FFilament
Created by delboy1978uk on 3/11/2025 in #❓┊help
file upload mutate on upload
->afterStateUpdated(function (TemporaryUploadedFile $state, callable $set) {
if ($state) {
$name = $state->getClientOriginalName();
$ext = $state->getExtension();
$set('filename_uploaded', $name . '.' . $ext);
}
})
->afterStateUpdated(function (TemporaryUploadedFile $state, callable $set) {
if ($state) {
$name = $state->getClientOriginalName();
$ext = $state->getExtension();
$set('filename_uploaded', $name . '.' . $ext);
}
})
3 replies
FFilament
Created by delboy1978uk on 3/11/2025 in #❓┊help
select with option to create?
@toeknee If you ever visit Belgium, I owe you a beer! Thanks once again!
5 replies
FFilament
Created by delboy1978uk on 3/11/2025 in #❓┊help
Modal with custom view sortable javascript?
hi again @toeknee thanks so much for your help once again 😄
5 replies
FFilament
Created by delboy1978uk on 2/27/2025 in #❓┊help
Select option formatting
ah that's brilliant! thank you so much!
8 replies