Mediable is a light weight easy to use Laravel Livewire Media Manager. Mediable is awesome for injecting content into blog posts, carousels, product previews or similar applications.
For a complete demonstration see the Mediable Demo repository.
- Easy Integration: Seamlessly integrate Mediable into your Laravel Livewire applications.
- File Uploads: Supports uploading various file types including images, videos, and documents.
- Image Conversion: Automatically create WebP and AVIF versions of your image uploads.
- Customizable: Configure allowable file types, maximum file size, storage disk, and folder.
- SEO-Friendly: Generate SEO-friendly file names for your uploads.
- Event Handling: Dispatch events to handle selected attachments and other actions.
- Database Integration: Store upload information in the database with the included migration.
- Graphic Draw: Perform various image manipulations using the GD Library.
You can install the package via composer:
composer require tomshaw/mediable
Mediable comes with both install and update commands.
php artisan mediable:install
php artisan mediable:update
Run the included database migration.
This creates an attachments table that stores upload information.
php artisan migrate
Add Mediable styles and scripts directives to your layout.
@vite(['resources/css/app.css', 'resources/js/app.js'])
@mediableStyles
@mediableScripts
Make sure your .env
APP_URL
is correctly set.
APP_URL=https://mydomain.com
Finally make uploaded files accessible from the web.
php artisan storage:link
Add the Mediable component to your blade template.
Boolean options can be provided by only specifying the key.
<livewire:mediable fullScreen />
Launching Mediable is done by dispatching the mediable.open
event.
This is typically executed with a button click.
$this->dispatch('mediable.open');
Insert attachments directly into form inputs using PHP 8 named parameters.
This example launches the modal with the intention of injecting attachments directly into an html input that has an
id
ofdescription
.
$this->dispatch('mediable.open', id: 'description');
Use the mediable.on
event to handle selected attachments.
on(['mediable.on' => function ($files) {
// Handle selected files...
}]);
You can customize allowable file types and max file size in the mediable.php
config file.
'validation' => [
'files.*' => 'required|mimes:jpeg,png,jpg,gif,mp3,mp4,m4a,ogg,wav,webm,avi,mov,wmv,txt,pdf,doc,docx,xls,xlsx,ppt,pptx,zip,rar|max:10240',
],
The mimes
rule specifies the allowable file types. To add a new file type, simply add its mime type to the list. For example, to allow SVG files, you would change it to:
'mimes:jpeg,png,jpg,gif,mp3,mp4,m4a,ogg,wav,webm,avi,mov,wmv,txt,pdf,doc,docx,xls,xlsx,ppt,pptx,zip,rar,svg'
The max
rule specifies the maximum file size, in kilobytes. To change the maximum file size, simply change the number. For example, to allow files up to 50MB, you would change it to:
'max:51200'
You can configure the storage disk used for file uploads in the mediable.php
config file. The disk
option is used to specify the disk name:
'disk' => env('MEDIABLE_DISK_DRIVER', 'public'),
The value of disk
is the key of disks
in your Laravel application's config/filesystems.php
file. By default, it uses the disk specified by the FILESYSTEM_DRIVER
environment variable, or 'public' if the environment variable is not set.
You can change the disk
option to use a different disk for file uploads. For example, to use the 's3' disk, you can set disk
to 's3':
'disk' => 's3',
Remember to configure the chosen disk correctly in your config/filesystems.php
file and to clear your config cache after making changes by running php artisan config:clear
in your terminal.
You can configure the folder used for file uploads on the specified disk. This configuration allows you to organize and manage and your uploaded files.
'folder' => env('MEDIABLE_DISK_FOLDER', 'uploads'),
Mediable includes a set of tools for performing various image manipulations using the GD Library. Here are some of the things you can do:
- Flip Image: Flip the image horizontally or vertically.
- Scale Image: Resize the image while maintaining the aspect ratio.
- Apply Filters: Apply various filters such as contrast, brightness, colorize, smooth, and pixelate.
- Rotate Image: Rotate the image by a specified angle with a background color.
- Crop Image: Crop the image to a specified rectangle.
- Add Text: Add text to the image with specified font, size, color, and angle.
Mediable can automatically create WebP and AVIF versions of your image uploads. You can control this behavior with the following environment variables:
-
MEDIABLE_CREATE_WEBP
: Set this totrue
to create a WebP version of each image upload, orfalse
to disable this feature. By default, this is set totrue
. -
MEDIABLE_CREATE_AVIF
: Set this totrue
to create an AVIF version of each image upload, orfalse
to disable this feature. By default, this is set totrue
.
You can also control the quality of the WebP and AVIF versions with the following environment variables:
-
MEDIABLE_WEBP_QUALITY
: Set this to any integer between 0 and 100 to control the quality of the WebP versions. A higher number means better quality but larger file size. By default, this is set to 80. -
MEDIABLE_AVIF_QUALITY
: Set this to any integer between 0 and 100 to control the quality of the AVIF versions. A higher number means better quality but larger file size. By default, this is set to 80.
Here's an example of how you might set these environment variables in your .env
file:
MEDIABLE_CREATE_WEBP=true
MEDIABLE_CREATE_AVIF=true
MEDIABLE_WEBP_QUALITY=80
MEDIABLE_AVIF_QUALITY=80
Please see CONTRIBUTING for details.
The MIT License (MIT). See License File for more information.
_ _ _ _
/\/\ ___ __| (_) __ _| |__ | | ___
/ \ / _ \/ _` | |/ _` | '_ \| |/ _ \
/ /\/\ \ __/ (_| | | (_| | |_) | | __/
\/ \/\___|\__,_|_|\__,_|_.__/|_|\___|