- add send CV status

This commit is contained in:
2023-08-04 16:25:09 +02:00
parent 6a033d108c
commit 2a2869e2c6
10 changed files with 104 additions and 11 deletions

View File

@@ -22,6 +22,8 @@ Route::name('admin.')->group(function () {
->name('store');
Route::get('{cv}', 'CVController@show')
->name('show');
Route::post('{cv}/sended', 'CVController@updateSendStatus')
->name('sended');
Route::post('', 'CVController@store')
->name('store');
Route::get('{cv}/edit', 'CVController@edit')