本文整理汇总了PHP中app\models\Client::with方法的典型用法代码示例。如果您正苦于以下问题:PHP Client::with方法的具体用法?PHP Client::with怎么用?PHP Client::with使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Client
的用法示例。
在下文中一共展示了Client::with方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getAll
public function getAll()
{
return view("clients.list")->with('clients', Client::with("data_client")->paginate(4)->setPath('all'));
}
示例2: ClientEditView
public function ClientEditView($id)
{
if (!is_null($id)) {
if (Auth::check()) {
if (in_array('ADD_EDIT_CLIENT', $this->permission)) {
if (User::isSuperAdmin()) {
$client_obj = Client::with('getAdvertiser')->find($id);
} else {
$usr_company = $this->user_company();
$client_obj = Client::with('getAdvertiser')->whereIn('user_id', $usr_company)->find($id);
}
if (!$client_obj) {
return Redirect::back()->withErrors(['success' => false, 'msg' => 'please Select your Client'])->withInput();
}
return view('client.edit')->with('client_obj', $client_obj);
}
return Redirect::back()->withErrors(['success' => false, 'msg' => "You don't have permission"]);
}
return Redirect::to(url('user/login'));
}
return Redirect::back()->withErrors(['success' => false, 'msg' => "Select valid ID"]);
}