antiquarian_capsaicin
antiquarian_capsaicin
FFilament
Created by antiquarian_capsaicin on 1/23/2024 in #❓┊help
Displaying multiple images uploaded from SpatiesMediaLibrary intp a blade file
Really appreciate it
5 replies
FFilament
Created by antiquarian_capsaicin on 1/23/2024 in #❓┊help
Displaying multiple images uploaded from SpatiesMediaLibrary intp a blade file
Thanks soo much 🙌🏽
5 replies
FFilament
Created by antiquarian_capsaicin on 12/6/2023 in #❓┊help
Tabs to filter the records(Panel Builder) not working
It's fixed Thanks
7 replies
FFilament
Created by antiquarian_capsaicin on 12/6/2023 in #❓┊help
Tabs to filter the records(Panel Builder) not working
Ok thanks I'll try that
7 replies
FFilament
Created by antiquarian_capsaicin on 12/6/2023 in #❓┊help
Tabs to filter the records(Panel Builder) not working
Yeah and I checked the documentation just to be sure I hadn't made a mistake. So I'm not sure what's going on
7 replies
FFilament
Created by antiquarian_capsaicin on 11/23/2023 in #❓┊help
Custom styles
ok thanks
9 replies
FFilament
Created by antiquarian_capsaicin on 11/23/2023 in #❓┊help
Custom styles
So when creating the theme do i add the specific filename to the command or...?
9 replies
FFilament
Created by antiquarian_capsaicin on 11/23/2023 in #❓┊help
Custom styles
So I'm using the table for the livewire page
9 replies
FFilament
Created by antiquarian_capsaicin on 11/23/2023 in #❓┊help
Custom styles
Also it's for a livewire page
9 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
I needed to run php artisan filament:install --scaffold --tables npm install
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
It's been fixed
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
content.build.min.js:1

GET chrome-extension://njgehaondchbmjmajphnhlojfnbfokng/js/contentScripts/dom.js net::ERR_FILE_NOT_FOUND This
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
No description
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
But the custom theme isn't working too
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
First off, the styling isn't working the way it's supposed to be working. So I was trying to make it work by using a custom theme
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
Trying to get it yto display as a grid in the livewire page
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
public static function table(Table $table): Table
{
return $table
->contentGrid([
'md' => 2,
'xl' => 5,
])
->query(ModelCourse::query())
->columns([
Grid::make()
->columns(1)
->schema([
ImageColumn::make('image')
->toggleable()
->circular(),
TextColumn::make('name')
->size(TextColumnSize::Large)
->searchable(),
TextColumn::make('level.name')
->searchable(),
TextColumn::make('cost')
->searchable(),
TextColumn::make('duration')
->searchable(),
TextColumn::make('details')
->searchable()
->toggleable(isToggledHiddenByDefault: true),

])->columns(2)
])

->contentGrid(['md' => 2, 'xl' => '3'])
->groups([
'level.name',
]);

}
public static function table(Table $table): Table
{
return $table
->contentGrid([
'md' => 2,
'xl' => 5,
])
->query(ModelCourse::query())
->columns([
Grid::make()
->columns(1)
->schema([
ImageColumn::make('image')
->toggleable()
->circular(),
TextColumn::make('name')
->size(TextColumnSize::Large)
->searchable(),
TextColumn::make('level.name')
->searchable(),
TextColumn::make('cost')
->searchable(),
TextColumn::make('duration')
->searchable(),
TextColumn::make('details')
->searchable()
->toggleable(isToggledHiddenByDefault: true),

])->columns(2)
])

->contentGrid(['md' => 2, 'xl' => '3'])
->groups([
'level.name',
]);

}
table in livewire component
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
@import '/vendor/filament/filament/resources/css/theme.css';

@config 'tailwind.config.js';

#course{
background-color: crimson;
}
@import '/vendor/filament/filament/resources/css/theme.css';

@config 'tailwind.config.js';

#course{
background-color: crimson;
}
theme.css
17 replies
FFilament
Created by antiquarian_capsaicin on 11/16/2023 in #❓┊help
Custom theme for a livewire component using a filament resource table
import { defineConfig } from 'vite'
import laravel, { refreshPaths } from 'laravel-vite-plugin'

export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js', 'resources/css/filament/admin/theme.css'],
refresh: [
...refreshPaths,
'app/Livewire/**',
],
}),
],
})
import { defineConfig } from 'vite'
import laravel, { refreshPaths } from 'laravel-vite-plugin'

export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js', 'resources/css/filament/admin/theme.css'],
refresh: [
...refreshPaths,
'app/Livewire/**',
],
}),
],
})
vite.config.js
17 replies
FFilament
Created by antiquarian_capsaicin on 11/13/2023 in #❓┊help
create option form error
Thanks very much but I was able to fix it
6 replies