rubelmiah99999 / laravel-erp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ERP [Laravel 5.5]

Features

  • Administration Dashboard
  • Responsive Layout
  • Bootstrap 4
  • Font Awesome
  • MongoDB databases support
  • JavaScript / CSS minification
  • JavaScript / CSS hashing
  • Some very useful helper functions to ease your live :)

System Requirements

To be able to run Laravel Boilerplate you have to meet the following requirements:

  • PHP > 7.0
  • PHP Extensions: PDO, cURL, Mbstring, Tokenizer, Mcrypt, XML, GD
  • Npm >= 5.6.0
  • Node.js > 6.0
  • Composer > 1.0.0
  • MongoDB PHP driver here

Installation

  1. Install Composer using detailed installation instructions here

  2. Install NPM & Node.js using detailed installation instructions here here

  3. Clone repository

$ git clone https://github.com/AndriIstiawan/laravel-erp.git
  1. Checkout from branch master
$ git checkout -b develop
  1. Change into the working directory
$ cd laravel-erp
  1. Copy .env.example to .env and modify according to your environment
$ cp .env.example .env
  1. Install composer dependencies
$ composer install
  1. An application key can be generated with the command
$ php artisan key:generate
  1. Execute following commands to install other dependencies
$ npm install
$ npm run dev
  1. Run these commands to create the tables within the defined database and populate seed data
$ php artisan migrate --seed

If you get an error like a PDOException try editing your .env file and change DB_HOST=127.0.0.1 to DB_HOST=localhost or DB_HOST=mysql (for docker-compose environment).

User Login

  1. Root login
  • username : admin
  • password : admin

Run

To start the PHP built-in server

$ php artisan serve --port=8080
or
$ php -S localhost:8080 -t public/

Now you can browse the site at http://localhost:8080 🙌

Error on Development

  1. php.ini

License

This is internal-sourced software licensed under the MIT license.

About

License:MIT License


Languages

Language:HTML 55.1%Language:JavaScript 17.7%Language:CSS 15.8%Language:PHP 11.3%Language:Hack 0.1%Language:Batchfile 0.0%