Laravel Rest API
Install Laravel Passport: Run the following command from the terminal to install the Laravel Passport package using the composer. composer require laravel/passport Go to the Laravel project folder and run…
Install Laravel Passport: Run the following command from the terminal to install the Laravel Passport package using the composer. composer require laravel/passport Go to the Laravel project folder and run…
Introduction To containerize an application refers to the process of adapting an application and its components in order to be able to run it in lightweight environments known as containers. I am going…
Add these lines in your ~/.bashrc file # Show git branch name force_color_prompt=yes color_prompt=yes parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' } if […