Laravel attributes is a package for create attributes easy for Laravel. With laravel attributes you can make attributes for all model (Polymorphic).
You don't have any stress for attributes! You can create attributes for any model and display like drink water :)
Requirements
PHP: ^8.0
Laravel Framework: ^9.0
Attributes | L9 | L10 |
---|---|---|
1.0 | :white_check_mark: | :white_check_mark: |
Installation
composer require milwad/laravel-attributes
After publish config files.
php artisan vendor:publish --provider="Milwad\LaravelAttributes\LaravelAttributesServiceProvider"
After publish, you migrate the migration file.
php artisan migrate
Usage
First, you use trait in model.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Milwad\LaravelAttributes\Traits\Attributable;
class Product extends Model
{
use HasFactory, Attributable;
}
After, you have access to attributes
relation and etc... .
If you want to attach attribute to a model, you can use attachAttribute
method. attachAttribute
method take a title
and value
.
$product = Product::query()->create([
'name' => 'milwad',
'content' => 'laravel attributes',
]);
$product->attachAttribute('age', '17');
If you have multiple attributes you can use attachAttributes
method to save attributes for a model.
$product = Product::query()->create([
'name' => 'milwad',
'content' => 'text',
]);
$data = [
[
'title' => 'milwad',
'value' => 'developer',
],
[
'title' => 'milwad2',
'value' => 'developer2',
],
[
'title' => 'milwad3',
'value' => 'developer3',
],
[
'title' => 'milwad4',
'value' => 'developer4',
],
[
'title' => 'milwad5',
'value' => 'developer5',
],
[
'title' => 'milwad6',
'value' => 'developer6',
],
];
$product->attachAttributes($data);
If you want to retrieve attributes from relation you can use attributes
.
$product = Product::query()->with('attributes')->get();
$product->attributes
Maybe you want to check one model has an attribute value you can use hasAttributeValue
method.
if ($product->hasAttributeValue('17')) {
return 'attribute value';
}
return 'no attribute value';
Maybe you want to check one model has an attribute title you can use hasAttributeTitle
method.
if ($product->hasAttributeTitle('milwad')) {
return 'attribute title';
}
return 'no attribute title';
If you want to delete all attributes of one model you can use deleteAllAttribute
method.
$product->deleteAllAttribute();
If you want to delete specific attribute of a model you can use deleteAttribute
method.
$product->deleteAttribute('title', 'value');
If you want to delete specific attribute by title you can use deleteAttributeByTitle
method.
Maybe you have two attributes with same title, if you delete with this method, will be deleted two attributes
$product->deleteAttributeByTitle('title');
If you want to delete specific attribute by value you can use deleteAttributeByValue
method.
Maybe you have two attributes with same value, if you delete with this method, will be deleted two attributes
$product->deleteAttributeByValue('value');
Run the tests with:
vendor/bin/pest
composer test
composer test-coverage
If you want change migration table name or change default model you can use laravel-attributes
config that exists in config
folder.
<?php
return [
/*
* Table config
*
* Here it's a config of migrations.
*/
'tables' => [
/*
* Get table name of migration.
*/
'name' => 'attributes',
/*
* Use uuid as primary key.
*/
'uuids' => false, // Also in beta !!!
],
/*
* Model class name for attributes table.
*/
'attributes_model' => \Milwad\LaravelAttributes\Attribute::class,
];
License
Source: https://github.com
#laravel #php