LaravelPackages.net
Acme Inc.
Toggle sidebar
sebastienheyd/boilerplate-media-manager

Media Manager for sebastienheyd/boilerplate

3.642
7
8.4.0
About sebastienheyd/boilerplate-media-manager

sebastienheyd/boilerplate-media-manager is a Laravel package for media manager for sebastienheyd/boilerplate. It currently has 7 GitHub stars and 3.642 downloads on Packagist (latest version 8.4.0). Install it with composer require sebastienheyd/boilerplate-media-manager. Discover more Laravel packages by sebastienheyd or browse all Laravel packages to compare alternatives.

Last updated

Laravel Media Manager for sebastienheyd/boilerplate

Packagist StyleCI Laravel Nb downloads MIT License

This package adds a media management tool to sebastienheyd/boilerplate

Installation

  1. In order to install Laravel Boilerplate Media Manager run :
composer require sebastienheyd/boilerplate-media-manager
  1. Run the migration to add permissions
php artisan migrate
  1. Create the symbolic link from public/storage to storage/app/public
php artisan storage:link

Optional:

To publish configuration files, you can run:

php artisan vendor:publish --tag=boilerplate

Configuration

After vendor:publish, you can find the configuration file mediamanager.php in the app/config/boilerplate folder

| configuration | description | |---------------------------------|----------------------------------------------------------------------------------------------------------| | mediamanager.base_url | Relative path to the public storage folder | | mediamanager.tinymce_upload_dir | Directory where TinyMCE will store his edited image | | mediamanager.thumbs_dir | Directory where to store dynamically generated thumbs | | mediamanager.authorized.size | Upload max size in bytes, default is 2048 | | mediamanager.authorized.mimes | Mime types by extension, see Laravel documentation | | mediamanager.filetypes | Associative array to get file type by extension | | mediamanager.icons | Associative array to get icon class (Fontawesome) by file type | | mediamanager.filter | Array of filtered files to hide |

Backend

TinyMCE

This media manager will be automatically used for images and files inclusion by the TinyMCE Blade component included with the sebastienheyd/boilerplate package.

Image selector

You can use the <x-boilerplate-media-manager::image> component to easily insert an image selector into your forms. This component allows you to use the media manager to select an image to use.

<x-boilerplate-media-manager::image name="image">

Parameters are :

| name | description | default | |-------------|--------------------------------|---------| | name | Input name (required) | "" | | value | Default input value | "" | | label | Label of the input field | "" | | width | Width of the selector | 300 | | height | Height of the selector | 200 | | help | Help text | "" | | group-class | Additional class to form-group | "" | | group-id | Form-group ID | "" |

File selector

You can use the <x-boilerplate-media-manager::file> component to easily insert a file selector into your forms. This component allows you to use the media manager to select a file to assign to the input field.

<x-boilerplate-media-manager::file name="file">

Parameters are :

| name | description | default | |-------------|---------------------------------------------|---------| | name | Input name (required) | "" | | value | Input value | "" | | label | Label of the input field | "" | | type | Media list filter (all, file, image, video) | all | | help | Help text | "" | | group-class | Additional class to form-group | "" | | group-id | Form-group ID | "" |

Frontend

Img (fit or resize)

img will dynamically resize an image and returns the URL using Intervention and Storage (public disk)

{!! img('/storage/my_picture.jpg', 100, 100, [], 'resize') !!}

will return

<img src="https://raw.githubusercontent.com/sebastienheyd/boilerplate-media-manager/refs/heads/main/storage/thumbs/resize/100x100/my_picture.jpg?1555331285" width="100" height="100">

Or using the @img Blade directive :

@img('/storage/my_picture.jpg', 250, 150, ['class' => 'fluid-image'])

will return

<img src="https://raw.githubusercontent.com/sebastienheyd/boilerplate-media-manager/refs/heads/main/storage/thumbs/fit/250x150/my_picture.png?1555331285" width="250" height="150" class="fluid-image">

You can already get only the url by using img_url helper function.

Clear cache

You can clear all resized image by using the artisan command thumbs:clear

php artisan thumbs:clear

Language

You can translate or change translations by running php artisan vendor:publish --tag=boilerplate-media-manager-lang. After running this command, you will find translations folders into resources/lang/vendor/boilerplate-media-manager. Copy one of the language folders in the new language you want to create and all you have to do is to translate. If you want to share the language you have added, don't hesitate to make a pull request.

Views

You can override views by running php artisan vendor:publish --tag=boilerplate-media-manager-views. You will then find the views in the resources/views/vendor/boilerplate-media-manager folder.

Star History Chart