Package Data | |
---|---|
Maintainer Username: | EveryWell |
Maintainer Contact: | aneverywell@gmail.com (Andrea Ognibene) |
Package Create Date: | 2017-08-21 |
Package Last Update: | 2021-01-25 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:01:19 |
Package Statistics | |
---|---|
Total Downloads: | 1,203 |
Monthly Downloads: | 5 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 2 |
Total Forks: | 4 |
Total Open Issues: | 1 |
A Laravel package that allows to handle images on your Eloquent models seamlessly.
To install this package just a few steps are needed
Pull this package in through Composer using the following command inside your terminal:
composer require everywell/imagination
Add the package to your application service providers in config/app.php
file.
'providers' => [
/*
* Laravel Framework Service Providers...
*/
Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
Illuminate\Auth\AuthServiceProvider::class,
...
/**
* Third Party Service Providers...
*/
EveryWell\Imagination\ImaginationServiceProvider::class,
],
Publish the package config file to your aplication running the following command inside your terminal:
php artisan vendor:publish --provider="EveryWell\Imagination\ImaginationServiceProvider"
Include HasImages
trait and also implement HasImages
contract inside your model class.
use EveryWell\Imagination\Traits\HasImages;
use EveryWell\Imagination\Contracts\HasImages as HasImagesContract;
class News extends Model implements HasImagesContract
{
use HasImages;
Add an images
array attribute to your model containing the fields that should be handled as images.
use EveryWell\Imagination\Traits\HasImages;
use EveryWell\Imagination\Contracts\HasImages as HasImagesContract;
class News extends Model implements HasImagesContract
{
use HasImages;
protected $fillable = [
'title',
'text',
'banner',
'image'
]
protected $images = [
'banner',
'image'
]
And that's it!