Tonkawuck
deploying laravel filament app on local machine issues
Your webserver should be setting the entry point of your application as
public/index.php
. Right now it looks like your entry point is the application root (folder level with app, storage, routes folders)47 replies
Trying to call a view of another resource from a table
The create route doesn't accept a record parameter. Also if you do your routes like
LaptopAssignmentsResource::getUrl('create', ['record_id' => $record->id])
you are less dependent on the actual route5 replies
Filament favicon is not embedded via https
Try modifying the
ASSET_URL
env var. If that doesn't work try adding a force HTTPS in a service provider depending on your apps environment. https://stackoverflow.com/a/518190958 replies
Adding demo mode in filament application
You could also override the functions that perform record creation/updating/deleting on your resource to prevent database interaction. I believe the create function is called "handleRecordCreate" and there will be a similar one for edit. For delete you can make the buttons action do nothing
12 replies