/**
  * Update the specified checkupfee in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $checkupfee = Checkupfee::findOrFail($id);
     $validator = Validator::make($data = Input::all(), Checkupfee::$rules);
     if ($validator->fails()) {
         return Redirect::back()->withErrors($validator)->withInput();
     }
     $data['patient_id'] = $checkupfee->patient_id;
     $checkupfee->update($data);
     if (Auth::user()->role == 'Accountant') {
         return Redirect::to('/app_check_fee');
     }
     return Redirect::to('checkupfees?id=' . $checkupfee->patient_id);
 }
示例#2
0
     $id = Input::get('id');
     $test = Labtest::findOrFail($id);
     $patient = $test->appointment->patient;
     $date = date('j F, Y', strtotime($test->appointment->date));
     $time = date('H:i:s', strtotime($test->appointment->time));
     $doctor_name = $test->appointment->employee->name;
     return View::make('printables.test_print', compact('test', 'date', 'time', 'doctor_name', 'patient'));
 });
 Route::get('app_checkup_fee_print', function () {
     $appointments = Appointment::has('checkupfee')->get();
     $flag = "checkup_invoice";
     return View::make('appointment_based_data.appointments', compact('appointments', 'flag'));
 });
 Route::get('checkup_invoice_print', function () {
     $id = Input::get('id');
     $fee = Checkupfee::findOrFail($id);
     $patient = $fee->appointment->patient;
     $date = date('j F, Y', strtotime($fee->appointment->date));
     $time = date('H:i:s', strtotime($fee->appointment->time));
     $doctor_name = $fee->appointment->employee->name;
     return View::make('printables.checkup_invoice_print', compact('fee', 'date', 'time', 'doctor_name', 'patient'));
 });
 Route::get('app_test_fee_print', function () {
     $appointments = Appointment::has('labtests')->get();
     $flag = "test_invoice";
     return View::make('appointment_based_data.appointments', compact('appointments', 'flag'));
 });
 Route::get('test_invoice_print', function () {
     $id = Input::get('id');
     $appointment = Appointment::findOrFail($id);
     $tests = $appointment->labtests()->where('total_fee', '!=', 0)->get();