vitali
Explore posts from serversHow I can integrate AI inside filamentphp?
Hi all, basically my client wants to have chatgpt ai integration with his filamentphp app.
AI must tell him tespt to do to reduce costs, better organizations of resources, calendars, tasks, expenses and so on...
My question is , how does it work? AI must read actual data and process the data to give answers? OR how? Need to implement custom models code?
Thanks, if anyone ever did something like that before appreciate a good feedback 🙏
5 replies
How to create a website and have the filamentphp as SASS product?
Hi guys, I'd like to create a website with statamic cms (laravel) and also give access to filamentphp dashboard to users (login, register etc..) anyone did it? Also what I need is to know on website the user logged in..
Anyone evr faced this challenge?
Thanks
3 replies
Add extra fields inside Import CSV Modal
Hi guys, it's possible to uplaod a CSV file and attach some inputs or select at the bottom of dragzone?
My needs: I need to upload a csv file (product variants) and specify for which product is the file related
🙏
2 replies
FileUpload component form custom Model
Hi guys, I have 2 tables:
1. listings
2. photos
I want to use original FileUpload component, meaning I will store my images into photos table.
Images upload correctly , but how I can save the data inside Photo.php model after upload?
FileUpload::make('photos')
->disk('public')
->columnSpan('full')
->multiple()
->minFiles(1)
->maxFiles(15)
->reorderable()
->visibility('public'),
class Photo extends Model
{
use HasFactory;
protected $fillable = [
'listing_id',
'uid',
'name',
'file_name',
'position'
];
}
1 replies