Posts

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 );             $table -> string ( 'name' , 255 );             $table -> string ( 'email' )-> nullable ();             $table -> timestamp ( 'email_verified_at' )-> nullable ();             $table -> string ( 'password' );             $table -> rememberToken ();             $table -> timestamps ();         })

Exploring PHP, Laravel, MySQL, PostgreSQL, JavaScript, and More

Welcome to CodeCraftSk! Explore the world of coding with PHP, Laravel, Livewire, MySQL, PostgreSQL, JavaScript, Git, and more. Find tutorials, tips, and insights to enhance your programming skills and stay updated with the latest trends in web development.