I have a command that runs in an while(1) loop, which occasionally needs to send an email alert usin...
You can access the request: https://laravel.com/docs/5.3/requests $username = $request->input('us...
Assuming a dentist could be an admin as well, you could move the role check to the view (or use view...
\Session::put('job_type', 1); if(\Session::get('job_type') == 1) { { //do something } https://...
$yes = 0; foreach($responses as $response) { if($response == 'Yes') { $yes++; }...
Can you post some code? You probably need the page to be a blade template (JobForm.blade.php) to use...
The Laravel portal for problem solving, knowledge sharing and community building.