I want full step to step work to clone a laravel project in my computer and also to run it properly !
Check your php,composer version & git
Ctrl
+ r
and type cmdphp -v
to check your php version in your command line.composer -v
to check your composer version in your command linecomposer update
git
Sourcetree Authentication with bitbucket Repository
Download Sourcetree and install it. Link is given bellow https://www.sourcetreeapp.com/
Login with Bitbucket mail & password. Then setup an SSH key with Sourcetree. Just follow the link given bellow https://confluence.atlassian.com/bitbucket/set-up-an-ssh-key-728138079.html#SetupanSSHkey-ssh3
Run your Laravel project cloning from Bitbucket Repository
Now,just clone your project in your preferred location.
Open your project in PhpStorm (or any other IDE you prefer).
copy .evn.example file in a new .evn file in that folder. Edit DB_DATABASE, DB_USERNAME, DB_PASSWORD
Create a folder naming framework
in storage
folder. then create 3 folders naming sessions
,views
,cache
in framework
folder.
open IDE terminal.
Type composer update
Type php artisan key:generate
Type php artisan config:clear
Type php artisan route:clear
Type php artisan view:clear
Type php artisan migrate
Type php artisan serve
Open browser type localhost:8000
Ta Da !!! Your project is running fine in your browser.