Today we are going to learn a new and I like the Ux of the filepond library. The way it uploads the files and actions provides the functionalities like editing images as well. You can explore the lib...
Gurpreet Kait
Author
Today we are going to learn a new and I like the Ux of the filepond library. The way it uploads the files and actions provides the functionalities like editing images as well. You can explore the library here on filepond website.
We will use File Pond with Laravel here. I am working on a product where I had to upload multiple images. I chose File Pond because it provides a very convenient way to interact while uploading.
I first watched the video for File Pond On the Laravel Daily YouTube channel. I'll embed the video so you can watch also you can go to the repo where I have implemented this functionality.
https://www.youtube.com/watch?v=GRXaCfS1qj0
file pond library with laravel
Installing File Pond And Initial Setup
First of all, to start using File Pond we have to use the File Pond Cdn. We also can install this via npm. I'll go with CDN for now.
Requirements
Installed Laravel
Jquery
File pond cdn (I have linked in the snippet below)
Controller ( Temporary File Handler)
Model ( Temporary File Handler)
I have created a welcome.blade.php file where I have used an input to represent file pond actions.
We will create a controller TemporaryFileController and Model TemporaryFile to represent temporary_files table. We also need a migration to create uploaded files.
<?phpuseIlluminate\Database\Migrations\Migration;
useIlluminate\Database\Schema\Blueprint;
useIlluminate\Support\Facades\Schema;
returnnewclassextendsMigration{
/**
* Run the migrations.
*/publicfunctionup(): void{
Schema::create('temporary_files', function (Blueprint $table) {
$table->id();
$table->string('folder');
$table->string('filename');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/publicfunctiondown(): void{
Schema::dropIfExists('temporary_files');
}
};
In FIle Pond when we choose a file after processing it uploads directly to the server. So, in that case, this will return whatever you send in response and keep that until the form is saved in file input.
You can see in the controller below the post method.
In Controller we are checking if filepond exists then get the file and then we have created a folder name. Now we gonna save this uploaded file in this folder and will return the name of the folder. Well, there's a reason behind returning in json. I was getting some error because of debugbar I guess.
Web.php
<?phpuseApp\Http\Controllers\TemporaryFileController;
useIlluminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/Route::get('/', function () {
returnview('welcome');
});
Route::controller(TemporaryFileController::class)->group(function(){
Route::match(,'temp/upload','index')->name('temporary.upload');
});
That means we are not sending the csrf token in request.
Make sure you have <meta name="csrf-token" content="{{ csrf_token() }}"> this tag in your head so that any time you get this in your js with $('meta').attr("content"), this syntax.
Now you have to fix this. Update your welcome.blade.php with this tag.