laravel-admin/media-manager
Composer 安装命令:
composer require laravel-admin/media-manager
包简介
Provides a model around the storage, gives you image styles and a admin to manage your media
README 文档
README
This package has 4 main goals:
- Provide an Eloquent model around your applications storage
- By implementing a trait on your models automaticly create a 1-n relation with the media model
- Create image styles for images and store or cache these
- Provide a Vue component to show and browse for media
Note: This package is still under development. Using it on productions environments is on your own risk. Collaborations and tips are always welcome
Requirements
This package is completely build on the philosofy of Laravel 5.3. It uses the 5.3 method to quickly upload files and a Vue components setup as in Laravel Elixir 6. Do not use this package for Laravel 5.2 or lower. The templates of the Vue components are completly build on Bootstrap 3.
Installation
Require this package with Composer
composer require laravel-admin/media-manager
Add the ServiceProvider to the providers array in app/config/app.php
LaravelAdmin\MediaManager\MediaManagerProvider::class
If you want to edit the config or backend views you need to publish these resources to your application
php artisan vendor:publish
The package generates a migration file for the media model, so migrate your database to create the table.
php artisan migrate
To use the Vue components in your (admin) applications, require the javascript bootstrap file from your vendor folder in your app.js file.
require('../../../vendor/laravel-admin/media-manager/resources/js/bootstrap.js');
Note: The javascript requires Dropzone to work, use the following statement to install it:
npm install dropzone --save-dev
Upload media
With the following code you can upload a file to your default storage and returns the created media model.
use LaravelAdmin\MediaManager\Upload; $media = Upload::handle($request, 'file');
Note: the first parameter of the handle method is the default Laravel Request object. The second parameter is the name of the submitted file.
It's possible to upload a file to another storage. This storage has to be a configured storage as in config/filesystems.php
$media = Upload::storage('s3')->handle($request, 'file');
Note: The Eloquent model saves the storage in the database, so your application always knows where to find the uploaded file.
The Uploader uses a driver based system to add files to your storage and database. You can create your own drivers and add it to the media config, within upload/drivers. Your driver has to implement the following interface:
LaravelAdmin\Mediamanager\Contracts\UploadDriver
By default the package provides two drivers. The default for uploading files from your request and a second one 'url' to directly save files from an url. To change the driver, just do:
$media = Upload::with('url')->handle($request, 'http://domain.com/somefile.jpg');
You can also replace an existing model instead of create a new one.
$media = Upload::update($current_model)->handle($request, 'file');
Create a relation
If you want to create a relation between your model and the media model, you can do this simple to add a field to your table and add the MediaTrait to your model.
Create a migration and add the following:
$table->integer('media_id')->unsigned()->nullable(); $table->foreign('media_id')->references('id')->on('media')->onDelete('set null');
Note: add ->after('fieldname') to add the field at the position you want.
Now add the MediaTrait to your model
namespace App; use Illuminate\Database\Eloquent\Model; use LaravelAdmin\MediaManager\Traits\MediaTrait; class Blog extends Model { use MediaTrait;
The trait is based on the convention that the field you add in your database is called 'media_id'. If you prefer another naming, or you have more than one field like a header, just add a relation manually to your model:
public function myfieldname() { return $this->belongsTo(\LaravelAdmin\MediaManager\Models\Media::class); }
Now the trait is integrated, for now there are two new methods available on your model
- mediaUrl
- imagestyle
mediaUrl
The mediaUrl method directly returns the public url of the connected media on your model
$blog->mediaUrl();
Note: As parameter it is possible to send a custom media field.
imagestyle
The imagestyle receives the imagestyle you want and return directly the url of the style. As second parameter you can pass a custom relation instead of 'media'.
$blog->imagestyle('thumbnail');
laravel-admin/media-manager 适用场景与选型建议
laravel-admin/media-manager 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.72k 次下载、GitHub Stars 达 9, 最近一次更新时间为 2016 年 09 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 laravel-admin/media-manager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 laravel-admin/media-manager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-09-30