Sunday, May 16, 2021

how to install a fresh laravel project using composer??

Install composer from the web using the link






Using composer installer.

First of all, you have to download the Installer of Laravel with the help of Composer, like this:

composer global require "laravel/installer"


No comments:

Post a Comment

Call Factory and make multiple record entry Using tinker

  $d = Factory(App\Department::class,3)->create(); > $d = Factory(App\Department::class, 10)->create(); = Illuminate\Database\Eloqu...