public function create_propland($ac_id)
 {
     $golongan = TransGol::lists('name', 'id');
     $investors = TransInvestor::lists('name', 'id');
     $status_sertifikat = TransStatusCert::lists('name', 'id');
     $forlands = TransForLand::lists('name', 'id');
     $statuslands = TransStatusLand::lists('name', 'id');
     return view('transaction_assets.create_propland', compact('ac_id', 'golongan', 'investors', 'status_sertifikat', 'forlands', 'statuslands'));
 }