/**
  * Remove the specified checkupfee from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Checkupfee::destroy($id);
     return Redirect::route('checkupfees.index');
 }
Beispiel #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();