php artisan workbench vendor/package --resources
command is not available in laravel 5, but how now create package in laravel 5 ?
In Laravel, these are some handy tricks I follow each time I need to create a Laravel package
Solution 1: Get a boilerplate template from https://github.com/cviebrock/laravel5-package-template, and put it under packages/
(follow the instruction in the repo)
Solution 2: Use a packager (with Laravel >= 5.5)
composer require jeroen-g/laravel-packager --dev
(check instruction in the repo here)composer require jeroen-g/laravel-packager --dev
etc, see full tutocomposer.json
Hope this is a good update for Laravel lovers ;)