This package is for the metadata of different Laravel projects.
Run the following command to pull in the latest version:
composer require jobmetric/metadata
Add the service provider to the providers array in the config/app.php config file as follows:
'providers' => [
...
JobMetric\Metadata\MetadataServiceProvider::class,
]
You need to publish the migration to create the metas
table:
php artisan vendor:publish --provider="JobMetric\Metadata\MetadataServiceProvider" --tag="metadata-migrations"
After that, you need to run migrations.
php artisan migrate