本文整理匯總了PHP中app\models\Role::getByLabel方法的典型用法代碼示例。如果您正苦於以下問題:PHP Role::getByLabel方法的具體用法?PHP Role::getByLabel怎麽用?PHP Role::getByLabel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\models\Role
的用法示例。
在下文中一共展示了Role::getByLabel方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: postSave
public function postSave()
{
//dd(\Request::all());
// save file
// save to ref_perusahaan
$perusahaan = new RefPerusahaan();
$perusahaan->nama = \Request::input('nama');
$perusahaan->npwp = \Request::input('npwp');
$perusahaan->alamat = \Request::input('alamat');
$perusahaan->kodepos = \Request::input('kodepos');
$perusahaan->telepon = \Request::input('telepon');
$perusahaan->fax = \Request::input('fax');
$perusahaan->niif = \Request::input('niif');
$perusahaan->tanggal_izin = \Request::input('tanggal_izin');
$perusahaan->nama_pj = \Request::input('nama_pj');
$perusahaan->telp_pj = \Request::input('telp_pj');
$perusahaan->hp_pj = \Request::input('hp_pj');
$perusahaan->email_pj = \Request::input('email_pj');
$perusahaan->jabatan_pj = \Request::input('jabatan_pj');
$perusahaan->kecamatan_id = \Request::input('kecamatan_id');
$perusahaan->sk_penunjukan_pj = '';
//\Request::input('sk_penunjukan_pj');
$perusahaan->berkas_izin = '';
//\Request::input('berkas_izin');
$perusahaan->save();
// save to users
$user = new User();
$user->username = \Request::input('username');
$user->password = bcrypt(\Request::input('password'));
$user->email = \Request::input('email_pj');
$user->nama = \Request::input('nama_pj');
$user->status = 0;
$user->role_id = \App\Models\Role::getByLabel('perusahaan')->id;
$perusahaan->users()->save($user);
return redirect('');
}