MeidaSort works by attaching file uploads to database table records. This is done by defining media items inside the table's corresponding model and then assigning uploaded files (from your forms) as properties (named after the media items) on the model before saving it. In essence, this allows uploaded files to be treated just like any other property on the model; MeidaSort will abstract away all of the file processing, storage, etc so you can focus on the rest of your project without having to worry about where your files are at or how to retrieve them.

A model can have multiple media items defined (avatar, photo, foo, etc) and in turn each media item can have multiple sizes (styles) defined. When an image or file is uploaded, MeidaSort will handle all the file processing (moving, resizing, etc) and provide a media item object (as a model property) with methods for working with the uploaded file. To accomplish this, four fields (named after the media item) will need to be created (via MeidaSort:fasten or manually) in the corresponding table for any model containing a file media item. For example, for a media item named 'avatar' defined inside a model named 'User', the following fields would need to be added to the 'users' table:

  • (string) avatar_file_name
  • (integer) avatar_file_size
  • (string) avatar_content_type
  • (timestamp) avatar_updated_at

Inside your table migration file, something like this should suffice:

$table->string("avatar_file_name")->nullable();
$table->integer("avatar_file_size")->nullable();
$table->string("avatar_content_type")->nullable();
$table->timestamp("avatar_updated_at")->nullable();

Features

This package provides tools for the following, and more:

  • Supports Cloud Storage
  • Upload any file type
  • Resize Images
  • Image defaults
  • Watermarks