plank / laravel-mediable by frasmage

A package for easily uploading and attaching media files to models with Laravel
969,403
714
20
Package Data
Maintainer Username: frasmage
Maintainer Contact: sean@plankdesign.com (Sean Fraser)
Package Create Date: 2016-07-20
Package Last Update: 2024-03-05
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-23 15:01:12
Package Statistics
Total Downloads: 969,403
Monthly Downloads: 18,014
Daily Downloads: 355
Total Stars: 714
Total Watchers: 20
Total Forks: 97
Total Open Issues: 21

Laravel-Mediable

Travis Coveralls SensioLabsInsight StyleCI Packagist

Laravel-Mediable is a package for easily uploading and attaching media files to models with Laravel 5.

Features

  • Filesystem-driven approach is easily configurable to allow any number of upload directories with different accessibility.
  • Many-to-many polymorphic relationships allow any number of media to be assigned to any number of other models without any need to modify the schema.
  • Attach media to models with tags, to set and retrieve media for specific purposes, such as 'thumbnail', 'featured image', 'gallery' or 'download'.
  • Easily query media and restrict uploads by MIME type, extension and/or aggregate type (e.g. image for jpeg, png or gif).

Example Usage

Upload a file to the server, and place it in a directory on the filesystem disk named "uploads". This will create a Media record that can be used to refer to the file.

$media = MediaUploader::fromSource($request->file('thumb'))
	->toDestination('uploads', 'blog/thumbnails')
	->upload();

Attach the Media to another eloquent model with one or more tags defining their relationship.

$post = Post::create($this->request->input());
$post->attachMedia($media, ['thumbnail']);

Retrieve the media from the model by its tag(s).

$post->getMedia('thumbnail')->first()->getUrl();

Installation

Add the package to your Laravel app using composer

composer require plank/laravel-mediable

Register the package's service provider in config/app.php. In Laravel versions 5.5 and beyond, this step can be skipped if package auto-discovery is enabled.

'providers' => [
    ...
    Plank\Mediable\MediableServiceProvider::class,
    ...
];

The package comes with a Facade for the image uploader, which you can optionally register as well. In Laravel versions 5.5 and beyond, this step can be skipped if package auto-discovery is enabled.

'aliases' => [
	...
    'MediaUploader' => Plank\Mediable\MediaUploaderFacade::class,
    ...
]

Publish the config file (config/mediable.php) and migration file (database/migrations/####_##_##_######_create_mediable_tables.php) of the package using artisan.

php artisan vendor:publish --provider="Plank\Mediable\MediableServiceProvider"

Run the migrations to add the required tables to your database.

php artisan migrate

Documentation

Read the documentation here.

License

This package is released under the MIT license (MIT).

About Plank

Plank is a web development agency based in Montreal, Canada.