Posts

Showing posts with the label Laravel Breeze

Laravel Breeze Login with email or username

Image
  Installation Process:         1.  Laravel           2.  https://laravel.com/docs/10.x/starter-kits#laravel-breeze     I hope you have already installed the Laravel project and Breeze-Auth.         let's start the next step... After completing the Install Process     1. Step:  Edit User Table File          Path :                     project_dir\database\migrations\2014_10_12_000000_create_users_table.php             public function up (): void     {         Schema :: create ( 'users' , function ( Blueprint $table ) {             $table -> id ();                $table -> string ( 'username' , 255 );           ...