//After installing laravel breeze you just need to follow these two steps
//1: add verified middleware in your dashboard route. eg:
Route::group(['prefix'=>'dashboard/', 'middleware'=>['auth', 'verified']], function(){
//routes under dashboard
}
//2: now in you user model add 'MustVerifyEmail'. eg:
use IlluminateContractsAuthMustVerifyEmail;
class User extends Authenticatable implements MustVerifyEmail
{
use HasApiTokens, HasFactory, Notifiable;
//other code