Patricio
Patricio
FFilament
Created by Diogo Gomes on 9/10/2024 in #❓┊help
Login not working - admin/livewire/update 405 (Method Not Allowed)
In terms of how Laravel responds, I guess the route will have to have that prefix, or you can opt in to use rewrites
16 replies
FFilament
Created by Diogo Gomes on 9/10/2024 in #❓┊help
Login not working - admin/livewire/update 405 (Method Not Allowed)
I haven't worked with Apache for more than 10 years For debuggin, I would start with the access log (Apache) + I would take the public/index.php and do a file_put_contents of $_REQUEST and $_SERVER (plain php global variables) Here, you can see the "step" from the webserver to PHP Analyze after a request, and you can go from there.
16 replies
FFilament
Created by Patricio on 8/15/2024 in #❓┊help
Delete a Record intentionally with relationships
Sure, I'll send you privately the current one
7 replies
FFilament
Created by Patricio on 8/15/2024 in #❓┊help
Delete a Record intentionally with relationships
Hey Leandro! I tried it, not working
7 replies
FFilament
Created by Patricio on 8/15/2024 in #❓┊help
Delete a Record intentionally with relationships
edit
7 replies
FFilament
Created by Patricio on 1/4/2024 in #❓┊help
Spatie Media Library outside a Resource
It stored the image. After storing, the form field is ready to upload again. Shouldn't it be "filled" with the current image?
10 replies
FFilament
Created by Patricio on 1/4/2024 in #❓┊help
Spatie Media Library outside a Resource
(or should I? and mention you)
10 replies
FFilament
Created by Patricio on 1/4/2024 in #❓┊help
Spatie Media Library outside a Resource
Will you make the PR to the docs?
10 replies
FFilament
Created by Patricio on 1/4/2024 in #❓┊help
Spatie Media Library outside a Resource
Thanks!
10 replies
FFilament
Created by Patricio on 1/4/2024 in #❓┊help
Spatie Media Library outside a Resource
I didn't even notice I was on V2 docs
10 replies
FFilament
Created by Patricio on 1/4/2024 in #❓┊help
Spatie Media Library outside a Resource
Oh, wow, exactly this!
10 replies
FFilament
Created by Ayman Alhattami on 11/29/2023 in #❓┊help
Dynamic Repeater
it's also an "array" of items, but each item can be of different schema
13 replies
FFilament
Created by Ayman Alhattami on 11/29/2023 in #❓┊help
Dynamic Repeater
No description
13 replies
FFilament
Created by Ayman Alhattami on 11/29/2023 in #❓┊help
Dynamic Repeater
13 replies
FFilament
Created by Ayman Alhattami on 11/29/2023 in #❓┊help
Dynamic Repeater
I think what look for is a "Builder"
13 replies
FFilament
Created by Ayman Alhattami on 11/29/2023 in #❓┊help
Dynamic Repeater
Well, if you're "repeating" it should be the same! 🙂
13 replies
FFilament
Created by Yaeger on 9/26/2023 in #❓┊help
How do you test repeaters?
yep, perfect! 🤩
23 replies
FFilament
Created by Yaeger on 9/26/2023 in #❓┊help
How do you test repeaters?
so now we can ensure that the repeater state will be what we provided
23 replies
FFilament
Created by Yaeger on 9/26/2023 in #❓┊help
How do you test repeaters?
so, such sequece must be like:
->set('data.answers', null)
->fillForm([
'answers' => [
[
'text' => "test_text",
'correct' => true
],
[
'text' => "test_text2",
'correct' => false
]
]
])
->set('data.answers', null)
->fillForm([
'answers' => [
[
'text' => "test_text",
'correct' => true
],
[
'text' => "test_text2",
'correct' => false
]
]
])
23 replies
FFilament
Created by Yaeger on 9/26/2023 in #❓┊help
How do you test repeaters?
set the intial state for the repeater, by using for example: ->set('data.answers', null)
23 replies