November 13th, 2024, posted in for_founders
by Adelina
Unfortunately, Laravel 5's documentation on how to create a package is an introduction, at best. It’s important to read it - to understand the concept - but it’s not a step-by-step guide to creating your first package. This is.
Last updated in July 2016 — used it to create my admin-panel building software: Backpack for Laravel.
Step 1. Install Laravel
For this, check out Laravel’s docs. As an alternative, use an existing Laravel application. Don’t forget you need to:
composer install
and
chmod -R o+w storage
chmod -R o+w vendor
Read the rest of this article on Medium.