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
- Node.js > 6.0
- Composer > 1.0.0
- Install Composer using detailed installation instructions here
- Install Node.js using detailed installation instructions here
- Clone repository
$ git clone https://github.com/kushwaha03/MyWebsite.git/
- Change into the working directory
$ cd MyWebsite
- Copy
.env.exampleto.envand modify according to your environment
$ cp .env.example .env
- Install composer dependencies
$ composer install --prefer-dist
- An application key can be generated with the command
$ php artisan key:generate
- Execute following commands to install other dependencies
$ npm install
$ npm run dev
- Run these commands to create the tables within the defined database and populate seed data
$ php artisan migrate --seed
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 🙌
some screenshort our website
This boilerplate is open-sourced software licensed under the MIT license.






