tuto1902
tuto1902
Explore posts from servers
FFilament
Created by tuto1902 on 1/24/2024 in #❓┊help
Conditionally change the background of a repeatable entry item
Actually, nvm. I checked the RepeatableEntry template and there's no customization option for the child contianers, other than removing the whole container style. I'll just work with the styles of the TextEntry inside the repeatable entry schema and the $record of each item.
RepeatableEntry::make('course.episodes')
->schema([
TextEntry::make('title')
->weight(fn (Model $record) => $record->title == 'foo' ? 'font-bold' : 'font-base')
])
RepeatableEntry::make('course.episodes')
->schema([
TextEntry::make('title')
->weight(fn (Model $record) => $record->title == 'foo' ? 'font-bold' : 'font-base')
])
`
5 replies
FFilament
Created by LancelotGamer on 10/9/2023 in #❓┊help
Select Menu issue while in dark mode
27 replies
FFilament
Created by LancelotGamer on 10/9/2023 in #❓┊help
Select Menu issue while in dark mode
would recomment to delete composer.lock as well
27 replies
FFilament
Created by LancelotGamer on 10/9/2023 in #❓┊help
Select Menu issue while in dark mode
notice the ^ . That will let you go above 3.0.0
27 replies
FFilament
Created by LancelotGamer on 10/9/2023 in #❓┊help
Select Menu issue while in dark mode
"filament/filament": "^3.0-stable"
27 replies
FFilament
Created by LancelotGamer on 10/9/2023 in #❓┊help
Select Menu issue while in dark mode
usually it's a missing ^ in the composer.json line for filament.
27 replies
FFilament
Created by tuto1902 on 9/30/2023 in #❓┊help
Breadcrumbs showing both left < and right > chevrons
The 'ltr:hidden' should have been my first clue
8 replies
FFilament
Created by tuto1902 on 9/30/2023 in #❓┊help
Breadcrumbs showing both left < and right > chevrons
Oh, I figured it out. I was missing the dir property in my html document.
<html dir="ltr">
<html dir="ltr">
8 replies
FFilament
Created by tuto1902 on 9/30/2023 in #❓┊help
Breadcrumbs showing both left < and right > chevrons
No description
8 replies
FFilament
Created by tuto1902 on 9/30/2023 in #❓┊help
Breadcrumbs showing both left < and right > chevrons
looking at the breadcrumbs code from the vendor folder, I'm confused as to why there is a left and right chevrons on all items except the first one
@if (! $loop->first)
<x-filament::icon
:alias="$iconAlias"
icon="heroicon-m-chevron-right"
@class([
$iconClasses,
'rtl:hidden',
])
/>
<!-- What is this one for? 👇🏼-->
<x-filament::icon
:alias="$iconAlias"
icon="heroicon-m-chevron-left"
@class([
$iconClasses,
'ltr:hidden',
])
/>
@endif
@if (! $loop->first)
<x-filament::icon
:alias="$iconAlias"
icon="heroicon-m-chevron-right"
@class([
$iconClasses,
'rtl:hidden',
])
/>
<!-- What is this one for? 👇🏼-->
<x-filament::icon
:alias="$iconAlias"
icon="heroicon-m-chevron-left"
@class([
$iconClasses,
'ltr:hidden',
])
/>
@endif
8 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
Ok marking as closed. Thanks for the help
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
Hmm, that's a good idea. I'll try that
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
not central to the subject
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
I'll think about it. It's for a simple Youtuve video example so a time picker would do just fine
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
and cast that as time
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
Oh, what I can do is move the JSON column to another table
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
right, and it can't figure it out from a JSON column. And I can't really cast the contents of a JSON column contents into a carbon instance
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
No description
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
No description
33 replies
FFilament
Created by tuto1902 on 9/20/2023 in #❓┊help
Simple repeater values not showing on edit
No description
33 replies