Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laravel Model Metadata Laravel Package

waad/laravel-model-metadata

View on GitHub
Deep Wiki
Context7

Laravel Model Metadata

Laravel Model Metadata

Laravel Model Metadata is a package designed to manage metadata with JSON support for multiple data types. It allows you to easily attach, manage, and query metadata on your Laravel models using the HasManyMetadata or HasOneMetadata traits.

๐Ÿ“š Documentation

For detailed documentation, including usage examples and best practices, please refer to the Documentation.

โœจ Requirements

  • PHP 8.0 or higher
  • Laravel framework 9.30.1 or higher
  • JSON extension enabled

๐Ÿ’ผ Installation

  1. Install the package using Composer:

    composer require waad/laravel-model-metadata
    
  2. (Optional) Publish the config file first:

    php artisan vendor:publish --tag=metadata-config
    
  3. (Recommended) Clear the configuration cache to ensure new config is loaded:

    php artisan config:clear
    
  4. Publish the migration files:

    php artisan vendor:publish --tag=metadata-migrations
    
  5. Run the migrations:

    php artisan migrate
    

โš™๏ธ Configuration

You can customize the metadata table name, model, and caching behavior by editing the published config file at config/model-metadata.php:

return [
    'table' => 'model_metadata',
    'model' => Waad\Metadata\Models\Metadata::class,

    'cache' => [
        'enabled' => env('MODEL_METADATA_CACHE_ENABLED', false),
        'ttl'     => env('MODEL_METADATA_CACHE_TTL', 3600),
        'store'   => env('MODEL_METADATA_CACHE_STORE', null),
        'prefix'  => env('MODEL_METADATA_CACHE_PREFIX', 'model_metadata'),
    ],
];

๐ŸŽˆ Usage

๐Ÿ”ฅ HasOneMetadata Trait

Add the HasOneMetadata trait to your model to enable a single metadata record:

use Waad\Metadata\Traits\HasOneMetadata;

class Company extends Model
{
    use HasOneMetadata;  // <--- Add this trait to your model
}

Some methods:

// Create metadata with array (only works if no metadata exists)
$company->createMetadata(['key' => 'value', 'another_key' => 'another_value']);

// Create metadata with collection
$company->createMetadata(collect(['key' => 'value']));

// Update existing metadata
$company->updateMetadata(['new_key' => 'new_value']);

// Delete the metadata
$company->deleteMetadata();

// Get metadata as array
$metadata = $company->getMetadata();

// Get metadata as collection
$metadataCollection = $company->getMetadataCollection();

๐Ÿ”ฅ HasManyMetadata Trait

Add the HasManyMetadata trait to your model to enable multiple metadata records:

use Waad\Metadata\Traits\HasManyMetadata;

class Post extends Model
{
    use HasManyMetadata;  // <--- Add this trait to your model

    // Enabled Append id with content metadata (default)
    public $metadataNameIdEnabled = true;

    // Custom Append key of id with metadata (default)
    public $metadataNameId = 'id';
}

see Configuration Append Id for more details

Some methods:

// Create metadata with array or collection
$post->createMetadata(['key1' => 'value1', 'key2' => 'value2']);
$post->createMetadata(collect(['key1' => 'value1', 'key2' => 'value2']));

// Update metadata by ID
$post->updateMetadata('{metadata_id}', ['new_key' => 'new_value']);

// Delete metadata by ID
$post->deleteMetadata('{metadata_id}');

// Get all metadata objects
$metadata = $post->metadata;
// or
$metadata = $post->metadata()->get();

// Get metadata by ID
$metadata = $post->getMetadataById('metadata_id');

// Get all metadata column pluck as array
$allMetadata = $post->getMetadata();

// Get all metadata column pluck as collection
$metadataCollection = $post->getMetadataCollection();

// Search in metadata
$searchResults = $post->searchMetadata('search_term');

๐Ÿ—„๏ธ Cache

The package includes an optional caching layer to reduce database queries. Cache is disabled by default and can be enabled in the config:

You can configure cache settings either in config/model-metadata.php or override them via your .env file.

Config Key / Env Variable Type Default Description
cache.enabled / MODEL_METADATA_CACHE_ENABLED bool false Enable or disable metadata caching
cache.ttl / MODEL_METADATA_CACHE_TTL int 3600 Cache time-to-live in seconds
cache.store / MODEL_METADATA_CACHE_STORE string|null null (empty) Cache store to use (null = default Laravel cache driver)
cache.prefix / MODEL_METADATA_CACHE_PREFIX string model_metadata Prefix for all metadata cache keys

For example, to enable cache and customize settings, add to .env:

MODEL_METADATA_CACHE_ENABLED=true
MODEL_METADATA_CACHE_TTL=3600
MODEL_METADATA_CACHE_STORE=redis
MODEL_METADATA_CACHE_PREFIX=model_metadata

When caching is enabled:

  • Read operations (getMetadata, getMetadataById, getMetadataCollection) are automatically cached.
  • Write operations (create, update, delete, forget, sync) automatically invalidate the cache.
  • You can manually clear the cache for a specific model using clearMetadataCache():
$company->clearMetadataCache();
$post->clearMetadataCache();
  • You can check if caching is active:
$company->metadataCacheIsEnabled(); // bool

๐Ÿงช Testing

To run the tests for development, use the following command:

composer test

๐Ÿ‘จโ€๐Ÿ’ป Contributors

๐Ÿ“ License

This package is open-sourced software licensed under the MIT license.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
hamzi/corewatch
minionfactory/raw-hydrator
hexters/coinpayment
rjcodes/rjcms
act-training/laravel-permissions-manager
alimarchal/laravel-chart-of-accounts
babenkoivan/elastic-scout-driver
mkwebdesign/filament-watchdog-v5
renatomarinho/laravel-page-speed
zedmagdy/filament-business-hours
renatovdemoura/blade-elements-ui
devgeek/beacon-admin
benjamin-rqt/data-watcher-bundle
atriumphp/atrium
sandermuller/package-boost-laravel
sandermuller/boost-skills
redaxo/core
yusufgenc/filament-api-forge
l3aro/rating-star-for-filament
leek/filament-subtenant-scope