Missing login button translation
This commit is contained in:
@@ -72,7 +72,7 @@ class AppointmentController extends Controller
|
||||
}
|
||||
|
||||
// also updates
|
||||
public function saveNotes(SaveNotesRequest $request, $application)
|
||||
public function saveNotes(SaveNotesRequest $request, Application $application)
|
||||
{
|
||||
if (!is_null($application))
|
||||
{
|
||||
|
@@ -21,7 +21,7 @@ class VoteController extends Controller
|
||||
'userID' => Auth::user()->id,
|
||||
'allowedVoteType' => $voteRequest->voteType,
|
||||
]);
|
||||
$vote->application()->attach($applicationID);
|
||||
$vote->application()->attach($application->id);
|
||||
|
||||
|
||||
Log::info('User ' . Auth::user()->name . ' has voted in applicant ' . $application->user->name . '\'s application', [
|
||||
|
Reference in New Issue
Block a user