Introduction

Get Started

Contents

Every niche is a separate project and they work in it's own folder without requiring files from another route. Every niche project folder contains layout, views, javascript and sass files.

Each project is developed as simple as possible to make your work easier. When defining the route, creating a controller is avoided and is only defined to return the view. Therefore, the code for each page is in its own view blade file.

Project Folders

  • acorn-laravel-classic-dashboard
  • acorn-laravel-ecommerce-platform
  • acorn-laravel-service-provider
  • acorn-laravel-starter-project

Requirements

PHP      >= v7.3
Composer >= v2.0.4
Laravel  >= v8.0
Nodejs   >= v14.15.5

Installation

Extract the zip file, navigate to one of the projects and follow the steps below to run the project on your system

Run your terminal in the project's directory (laravel/acorn-laravel-classic-dashboard) and install dependencies with composer.

composer install

Rename the file named env.example to env and generate the project key

php artisan key:generate                   

Laravel sass uses webpack to compile and move static files to public folder. In order to run webpack tasks, you need to install the node dependencies.

npm install

For development environment: compiling the sass files and applying the changes in the static files to the "public" folder served by the web server

npm run dev

Launch the project on local server (By default it runs at 127.0.0.1:8080)

php artisan serve

You can now view your project at 127.0.0.1:8080

Deployment

First of all, you need to compile static files and sass file for production environment.

npm run prod

For all the next steps, you may follow the instructions in the Laravel documentation .

Tip: Do not forget to define write permissions to the "bootstrap" and "storage" folders during deploying.