plank / laravel-metable by frasmage

A package for attaching arbitrary data to Eloquent models
448,850
273
11
Package Data
Maintainer Username: frasmage
Maintainer Contact: sean@plankdesign.com (Sean Fraser)
Package Create Date: 2017-01-16
Package Last Update: 2024-03-01
Language: PHP
License: MIT
Last Refreshed: 2024-04-10 15:01:26
Package Statistics
Total Downloads: 448,850
Monthly Downloads: 10,605
Daily Downloads: 460
Total Stars: 273
Total Watchers: 11
Total Forks: 41
Total Open Issues: 8

Laravel-Metable

Travis Coveralls StyleCI SensioLabsInsight Packagist

Laravel-Metable is a package for easily attaching arbitrary data to Eloquent models for Laravel 5.

Features

  • One-to-many polymorphic relationship allows attaching data to Eloquent models without needing to adjust the database schema.
  • Type conversion system allows data of numerous different scalar and object types to be stored and retrieved. See the documentation for the list of supported types.

Example Usage

Attach some metadata to an eloquent model

$post = Post::create($this->request->input());
$post->setMeta('color', 'blue');

Query the model by its metadata

$post = Post::whereMeta('color', 'blue');

Retrieve the metadata from a model

$value = $post->getMeta('color');

Installation

  1. Add the package to your Laravel app using composer
composer require plank/laravel-metable
  1. 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\Metable\MetableServiceProvider::class,
    ...
];
  1. Publish the config file (config/metable.php) and migration file (database/migrations/####_##_##_######_create_metable_table.php) of the package using artisan.
php artisan vendor:publish --provider="Plank\Metable\MetableServiceProvider"
  1. Run the migrations to add the required table to your database.
php artisan migrate
  1. Add the Plank\Metable\Metable trait to any eloquent model class that you want to be able to attach metadata to.
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use Plank\Metable\Metable;

class Post extends Model
{
	use Metable;

	//...
}

Documentation

The full documentation is available on ReadTheDocs.

License

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

About Plank

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