Able Pro supports Laravel 11.* with Vite. The following is a guide to quickly start using the template.
Prerequisites
XAMPP/ WAMP
Make sure to have XAMPP installed on your computer. Currently, Able Pro supports PHP version 8.2 or newer.
Composer
A composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.
Make sure to have Composer installed on your computer. Currently, Composer supports PHP version 8.2 to run.
Make sure to have NodeJs installed on your computer. Currently, Nodejs supports v20.* so use the LTS version only.
Make sure you have installed Node JS installed and use Node version 20.*
Installation
Navigate to your root folder (i.e. ablepro-laravel-bootstrap)
c:>cd able-pro-laravel-bootstrap
Run the following commands step by step.
// Install all required packages in the Vendor foldercomposerinstallnpminstall// Generate new key phpartisankey:generate// Clear the cachephpartisanoptimize:clear// Generate the assets filesnpmrunbuild// Migrate the database and seed dataphpartisanmigratephpartisandb:seed// Runs the project need to run below commands in 2 separate command promptphpartisanservenpmrundev