/**
  * Update the specified appointment in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $appointment = Appointment::findOrFail($id);
     $validator = Validator::make($data = Input::all(), Appointment::$rules);
     if ($validator->fails()) {
         return Redirect::back()->withErrors($validator)->withInput();
     }
     $data['time'] = Timeslot::findOrFail($data['timeslot_id'])->slot;
     if (Input::get('status') == '3' || Input::get('status') == '4' || Input::get('status') == '5') {
         $data['time'] = null;
     }
     $appointment->update($data);
     return Redirect::route('appointments.index');
 }
 /**
  * Show the form for creating a new vitalsign
  *
  * @return Response
  */
 public function create()
 {
     $appointment = Appointment::findOrFail(Input::get('id'));
     return View::make('vitalsigns.create', compact('appointment'));
 }
示例#3
0
     $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();
     $patient = $appointment->patient;
     $date = date('j F, Y', strtotime($appointment->date));
     $time = date('H:i:s', strtotime($appointment->time));
     $doctor_name = $appointment->employee->name;
     $sum = 0;
     foreach ($tests as $test) {
         $sum += $test->total_fee;
     }
     return View::make('printables.test_invoice_print', compact('sum', 'tests', 'date', 'time', 'doctor_name', 'patient'));
 });
 Route::get('pdf_record', function () {
     $id = Input::get('id');
     $patient = Patient::find($id);
     $appointments = $patient->appointments()->get();