How to install laravel in ubuntu

1 |

Laravel is one of the popular PHP frameworks now. There are many ways to install the laravel framework. But we will be discussing two of them, which are very easy and are widely used. Laravel Installer Composer Before starting the laravel setup process, make sure that your server meets the following requirements. PHP >= 5.6.4 OpenSSL […]

Laravel Maintenance Mode

1 |

Laravel provides maintenance mode. If you enable Laravel Maintenance Mode, It will show a custom view to all your application requests. If you are updating your site or you want to put your application under maintenance means you can able to use this option.   Following is command to enable this mode php artisan down […]

Laravel Directory setup in Azure

0 |

Directory setup is an important process in Laravel projects. Laravel lifecycle always starts from the file `public/index.php`. Azure deploys everything you push to it into the `wwwroot` directory. To change the project startup point in Azure, Follow the below steps Click your web service link. It will list all settings under your web service Go […]

How to install composer in Azure

0 |

The composer is an important package manager in PHP. It is mainly used with Laravel for package management. The composer can be easily installed on Azure via Its extension manager. Follow the below steps Click your web service link. It will list all settings under your web service. Go to `DEVELOPMENT TOOLS` and click `Extensions` […]

How to change PHP version in Azure

0 |

Azure provides an option to install the needed PHP version according to our project. To change PHP version in Azure, Follow the below steps Log in to Azure, and click your web service link. It will list all settings under your web service Go to `SETTINGS` and click `Application Settings` Link. It will list all […]