update v1.0.7.5

This commit is contained in:
Sujit Prasad
2016-06-17 20:28:31 +05:30
parent 7fba00a7a0
commit a3fbf1acd4
150 changed files with 2515 additions and 3697 deletions

View File

@@ -65,6 +65,9 @@ class UnAuthController extends Controller
$ticket_number = $request->input('ticket_number');
// get user details
$user_details = User::where('email', '=', $email)->first();
if($user_details == null) {
return \Redirect::route('form')->with('fails', Lang::get('lang.sorry_that_email_is not_available_in_this_system'));
}
// get ticket details
$ticket = Tickets::where('ticket_number', '=', $ticket_number)->first();
if ($ticket == null) {