Adam
Adam
FFilament
Created by Adam on 12/16/2023 in #❓┊help
Textarea doesn't save
It's been a long day, that was it. Thanks for pointing that out 🙂
5 replies
FFilament
Created by Adam on 11/15/2023 in #❓┊help
Github Actions - How to ignore Filament?
gotcha, thanks! i'll give that a try
9 replies
FFilament
Created by Adam on 11/15/2023 in #❓┊help
Github Actions - How to ignore Filament?
Is there a standard / easy way to get around this? To my understanding, I can only authenticate Filament on one domain (and then localhost). But the testing is done on Github.
9 replies
FFilament
Created by Adam on 11/15/2023 in #❓┊help
Github Actions - How to ignore Filament?
Here's the relevent portions
"require": {
"php": "^8.2.8",
"awcodes/filament-quick-create": "^v3.1.1",
"bugsnag/bugsnag-laravel": "^2.0",
"filament/filament": "3.*",
"filament/forms": "^v3.0.0",
"filament/spatie-laravel-media-library-plugin": "^v3.0.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.7",
"league/flysystem-aws-s3-v3": "^3.0",
"mohammad-fouladgar/eloquent-builder": "^4.3",
"owenvoke/blade-fontawesome": "^2.4",
"ralphjsmit/laravel-filament-media-library": "^3.2",
"shuvroroy/filament-spatie-laravel-health": "^v2.0.0",
"spatie/cpu-load-health-check": "^1.0.4"
},
"require": {
"php": "^8.2.8",
"awcodes/filament-quick-create": "^v3.1.1",
"bugsnag/bugsnag-laravel": "^2.0",
"filament/filament": "3.*",
"filament/forms": "^v3.0.0",
"filament/spatie-laravel-media-library-plugin": "^v3.0.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/sanctum": "^3.2",
"laravel/tinker": "^2.7",
"league/flysystem-aws-s3-v3": "^3.0",
"mohammad-fouladgar/eloquent-builder": "^4.3",
"owenvoke/blade-fontawesome": "^2.4",
"ralphjsmit/laravel-filament-media-library": "^3.2",
"shuvroroy/filament-spatie-laravel-health": "^v2.0.0",
"spatie/cpu-load-health-check": "^1.0.4"
},
"repositories": [
{
"type": "composer",
"url": "https://filament-media-library-pro.composer.sh"
}
]
"repositories": [
{
"type": "composer",
"url": "https://filament-media-library-pro.composer.sh"
}
]
Is there a way to "skip" the install of filament when in certain environments. For example, if the .env has APP_ENV=testing
9 replies
FFilament
Created by Adam on 8/31/2023 in #❓┊help
Image Uploading & S3 with Previews
And oddly enough, adding that to the chain of methods seems to have fixed the issue with the images being uploaded to the wrong directory.
3 replies
FFilament
Created by Adam on 8/31/2023 in #❓┊help
Image Uploading & S3 with Previews
I came across ->visibility('private') and it seems this will show images once the form has been saved (or revisited).
3 replies
FFilament
Created by Adam on 8/7/2023 in #❓┊help
Table Relationship 'name' not 'id'
No luck still. The id of the relationship is still being output.
13 replies
FFilament
Created by Adam on 8/7/2023 in #❓┊help
Table Relationship 'name' not 'id'
If it helps, here is the migration: $table->foreignId('resort')->nullable()->constrained()->references('id')->on('resorts');
13 replies
FFilament
Created by Adam on 8/7/2023 in #❓┊help
Table Relationship 'name' not 'id'
Tried that prior, and this is what it results in:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'resorts.resort' in 'where clause'
SELECT * FROM `resorts` WHERE `resorts`.`resort` IN (1, 2)
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'resorts.resort' in 'where clause'
SELECT * FROM `resorts` WHERE `resorts`.`resort` IN (1, 2)
Code for reference:
return $table
->columns([
TextColumn::make('name'),
TextColumn::make('resort.name')->label('Resort'),
return $table
->columns([
TextColumn::make('name'),
TextColumn::make('resort.name')->label('Resort'),
13 replies
FFilament
Created by Adam on 8/7/2023 in #❓┊help
Table Relationship 'name' not 'id'
13 replies