Tag: mysql

Laravel Basics | Installation to basic website

Welcome to the most practical and easy step by step information on how to install laravel in your computer. First of all, Install ComposerĀ if you have not installed it yet. Install WAMP c:\wamp64\www>composer create-project laravel/laravel helloworld Views (C:\wamp64\www\helloworld\resources\views) C:\wamp64\www\helloworld\resources\views\hi.blade.php Routes (C:\wamp64\www\helloworld\routes) C:\wamp64\www\helloworld\routes\web.php Route::get(‘hii’, function () { return view(‘hi’); }); Create a new template file in