public function create_propbuilding($ac_id, $tipe)
 {
     $golongan = TransGol::lists('name', 'id');
     $investors = TransInvestor::lists('name', 'id');
     $status_sertifikat = TransStatusCert::lists('name', 'id');
     $forbuildings = TransForBuilding::lists('name', 'id');
     $statusbuildings = TransStatusBuilding::lists('name', 'id');
     $index_tanah = TransactionPropland::lists('index', 'index');
     return view('transaction_assets.create_propbuilding', compact('tipe', 'ac_id', 'golongan', 'investors', 'forbuildings', 'statusbuildings', 'index_tanah'));
 }