728x90 반응형 전체 글105 Route [verification.verify] not defined. 회원가입시 이메일 인증 web.php 에 use Illuminate\Foundation\Auth\EmailVerificationRequest; Route::get('/email/verify/{id}/{hash}', function (EmailVerificationRequest $request) { $request->fulfill(); return redirect('/login'); })->middleware(['auth', 'signed'])->name('verification.verify'); 2023. 10. 4. 체크박스 최대 1개만 선택하기 체크박스 최대 1개만 선택하기 $('input[type="checkbox"][value="1"]').click(function(){ if($(this).prop('checked')){ $('input[type="checkbox"][value="1"]').prop('checked',false); $(this).prop('checked',true); } }); 2023. 9. 15. php artisan 캐시 클리어 php artisan optimize php artisan cache:clear php artisan config:clear php artisan route:cache php artisan route:clear 2023. 9. 6. 8비트 2개를 16비트 uint16_t 로 변환 uint16_t temp = 0; uint8_t tmp[2] = {0x00, 0xff}; temp = tmp_val[0] 2023. 6. 29. 이전 1 ··· 6 7 8 9 10 11 12 ··· 27 다음 728x90 반응형