public function getNamaLokasiAttribute()
 {
     $value = $this->attributes['lokasi'];
     $data = LokasiPelatihan::find($value);
     if ($data) {
         return $data->nama_lokasi;
     }
     return '-';
 }
 /**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     //
     $data = array('latihan' => Pelatihan::DropdownPelatihan(), 'lokasi' => LokasiPelatihan::DropdownLokasiPelatihan());
     return Response::json($data);
 }
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     //
     $lokasi_pelatihan = LokasiPelatihan::find($id);
     if ($lokasi_pelatihan->delete()) {
         return Response::json(array('success' => TRUE));
     }
 }
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return LokasiPelatihan the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = LokasiPelatihan::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }