refactor: migrate career applications to separate job and intern Filament resources
This commit is contained in:
@@ -312,4 +312,19 @@ class CareerController extends Controller
|
||||
session()->forget('intern_id');
|
||||
return redirect()->route('intern.login')->with('success', 'Başarıyla çıkış yapıldı.');
|
||||
}
|
||||
|
||||
public function verifyCertificate($code)
|
||||
{
|
||||
$application = CareerApplication::where('certificate_code', $code)
|
||||
->where('type', 'internship')
|
||||
->firstOrFail();
|
||||
|
||||
return view('front.career.verify', [
|
||||
'application' => $application,
|
||||
'meta' => [
|
||||
'title' => 'Staj Bitirme Sertifikası Doğrulama - ' . $application->name,
|
||||
'description' => $application->name . ' isimli stajyerimizin staj bitirme sertifikası ve performans raporu doğrulama sayfası.',
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user