홍보확인서 확인 추가
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-01-08 15:19:14 +09:00
parent b5fad6e358
commit 01a65ee68c
3 changed files with 72 additions and 0 deletions

View File

@@ -604,4 +604,19 @@ class M703 extends BaseController
]);
}
}
// 홍보확인서 확인
public function find()
{
$fax = $this->model->getOneFax();
if (empty($fax)) {
return redirect()->back()
->with('alert', '새로운 FAX가 존재하지 않습니다.');
}
return redirect()->to('/m703/m703a/detail/' . $fax['fax_sq']);
}
}