Example #1
0
 public function getPayment()
 {
     $_pack = new Packages();
     $packId = Input::get('id');
     return Response::json(array('success' => true, 'fullN' => Auth::user()->user_fname . ' ' . Auth::user()->user_mname . ' ' . Auth::user()->user_lname, 'price' => $_pack->getId($packId)->pc_price, 'packageN' => $_pack->getPack()->pc_name));
 }