- This project will only work on 64-bit Linux system (tested on Ubuntu 16.04 x64) because we use 64-bit wkhtmltopdf binary to generate pdf files, if you want to run this project on 32-bit system or other platform (e.g: Windows, MacOS) you will need to setup your own config file.
- because of wkhtmltopdf depandency, you will need to install libxrender, Ubuntu user can simply run
sudo apt-get install libxrender1
- Install composer first.
- for ubuntu user, recommand to place composer into ~/bin to avoid some permission problem.
- please also remember to install php-mbstring, php-mcrypt, php-json, php-zip, php-xml, php-mysql or other php database driver.
- clone this repo.
- change your command line path into repo directory.
composer install
cp .env.example .env
php artisan key:generate
- setup env variable to your own setting in .env file.
php artisan migrate --seed
to setup database and insert some data for testing.php artisan serve
to start a develop server.
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as:
- Simple, fast routing engine.
- Powerful dependency injection container.
- Multiple back-ends for session and cache storage.
- Expressive, intuitive database ORM.
- Database agnostic schema migrations.
- Robust background job processing.
- Real-time event broadcasting.
Laravel is accessible, yet powerful, providing tools needed for large, robust applications. A superb combination of simplicity, elegance, and innovation give you tools you need to build any application with which you are tasked.
Laravel has the most extensive and thorough documentation and video tutorial library of any modern web application framework. The Laravel documentation is thorough, complete, and makes it a breeze to get started learning the framework.
If you're not in the mood to read, Laracasts contains over 900 video tutorials on a range of topics including Laravel, modern PHP, unit testing, JavaScript, and more. Boost the skill level of yourself and your entire team by digging into our comprehensive video library.
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the Laravel documentation.
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell at [email protected]. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license.