Email Verification Email Verification // create_users_table migration $table->timestamp('email_verified_at')->nullable(); namespace namespace App App; use use Illuminate Illuminate\Notifications Notifications\Notifiable Notifiable; use use Illuminate Illuminate\Contracts Contracts\Auth Auth\MustVerifyEmail MustVerifyEmail; use use Illuminate Illuminate\Foundation Foundation\Auth Auth\User User as as Authenticatable Authenticatable; class class User User extends extends Authenticatable Authenticatable implements implements MustVerifyEmail MustVerifyEmail { use use Notifiable Notifiable; // ... } 5 / 21
Dump Server Dump Server $ php artisan dump-server Laravel Var Dump Server ======================= [OK] Server listening on tcp://127.0.0.1:9912 // Quit the server with CONTROL-C 8 / 21
Array functions Array functions $arr = 'this is not an array!'; count($arr); // Warning count(): Parameter must be an array or an object that i if if (is_countable($arr)) { count($arr); } 17 / 21