This package is for keeping the files of different Laravel projects.
Run the following command to pull in the latest version:
composer require jobmetric/mediaAdd the service provider to the providers array in the config/app.php config file as follows:
'providers' => [
...
JobMetric\Media\MediaServiceProvider::class,
]Copy the config file from vendor/jobmetric/media/config/config.php to config folder of your Laravel application and rename it to media.php
Run the following command to publish the package config file:
php artisan vendor:publish --provider="JobMetric\Media\MediaServiceProvider" --tag="media-config"You should now have a config/media.php file that allows you to configure the basics of this package.
You need to publish the migration to create the medias table:
php artisan vendor:publish --provider="JobMetric\Media\MediaServiceProvider" --tag="media-migrations"After that, you need to run migrations.
php artisan migrate