clear
  • Introduction
  • HTML
  • Html Structure
    • Header
    • Left Side Menu
    • Right Side Menu
    • Main Content
      • Buttons
      • Font Icons
      • Progress Bars
      • Maps
      • Lock Screen
  • FAQ's
  • SCSS
  • CSS Files
  • Javascript Files
  • Plugins
  • Start New Page
    • Menu Bar Fold
    • Boxed and Moveable Header
    • Moveable Header
    • Boxed and Fixed Header
    • Fixed Header and Menu
  • Vue Version
    • Basic Installation
      • Clear 1.7 installation
    • Basic Structure
      • Layout structure
      • Leftmenu structure
      • Start New Page
      • Changing layouts
  • Changing Color Scheme
  • Laravel Spark Skin
    • Spark Installation
    • Using .vue files
    • Adding External Plugins
  • Laravel Version
    • Changing skin
    • Changing Layouts
Powered by GitBook
On this page
  • Get Composer packages
  • permissions
  • database credentials
  • compile assets

Was this helpful?

Laravel Version

The zip file contains all laravel files integrated with Clear, however you need to perform following steps to get vendors etc.

Get Composer packages

composer install

permissions

chmod -R 775 storage

chmod 775 bootstrap/cache

If you are on linux/ mac you can run below command to chown it.

chown -R www-data /var/www

database credentials

open.envand modify database details with yours

compile assets

If you don't have good knowledge on nodejs and npm, you can copy public folder files from codecanyon's downloaded files

Note :The above step is completely optional , if you are not comfortable with this, you can skip it and perform the below steps, still it works fine.

you can check installed version by runningnode -vcommand in terminal.

For laravel 5.5 , the minimum version of php required is7.0.0and

the following php extensions are rquired

  • PHP >= 7.0.0

  • OpenSSL PHP Extension

  • PDO PHP Extension

  • Mbstring PHP Extension

  • Tokenizer PHP Extension

  • XML PHP Extension

from 5.5 onwards, Laravel team decided to move to webpack from gulp

so assets compilation differs a bit.

They introduced a new npm package for webpack calledmix

install local packages

yarn install

get bower components

bower install

move assets to public

npm run dev

Note:If bower gives warning that you are running as administrator, please run the commandbower install --allow-root

PreviousAdding External PluginsNextChanging skin

Last updated 5 years ago

Was this helpful?

Make sure you have installed in your system with minimum version 7.0.0,

If you are having older version, please install latest version from

you can read more about it

nodejs
nodejs.org
here