Laravel
Learn how to configure Laravel for use with Filebase.
What is Laravel?
1. Create a new Laravel project with the following command:
2. Use the cd command to move into the newly created project directory.

3. Create a new file in the ./resources/views directory and name it fileUpload.blade.php with the following contents:
./resources/views directory and name it fileUpload.blade.php with the following contents:4. Move back into your project’s top directory and open the ./routes/web.php file.
./routes/web.php file. 5. Move back into your project’s top directory and open the .env file.
6. Move back into your project’s top directory and open the ./config/filesystems.php file.
./config/filesystems.php file. 7. Next, install the Laravel driver with the commands:
8. Then start your Laravel server with the following command:
9. Then go to your web browser and navigate tohttp://127.0.0.1:8000.
10. You will see a screen that prompts file uploads.

Last updated