本文整理匯總了PHP中Vendor::join方法的典型用法代碼示例。如果您正苦於以下問題:PHP Vendor::join方法的具體用法?PHP Vendor::join怎麽用?PHP Vendor::join使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Vendor
的用法示例。
在下文中一共展示了Vendor::join方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: action_emails
public function action_emails()
{
$view = View::make('admin.emails');
$view->vendor_emails = Vendor::join('users', 'user_id', '=', 'users.id')->where_null('banned_at')->where('send_emails', '=', true)->lists('email');
$view->officer_emails = Officer::join('users', 'user_id', '=', 'users.id')->where_null('banned_at')->where('send_emails', '=', true)->lists('email');
$this->layout->content = $view;
}
示例2: action_index
public function action_index()
{
$view = View::make('vendors.index');
$page = intval(Input::get('page') ?: 1);
$view->vendors = Vendor::join('users', 'user_id', '=', 'users.id')->where_null('users.banned_at')->raw_where("EXISTS (SELECT service_id from service_vendor WHERE `vendor_id` = `vendors`.`id`)")->where(function ($q) {
$q->where(DB::raw("RIGHT(image_url, 4)"), '=', 'jpeg');
$q->or_where_in(DB::raw("RIGHT(image_url, 3)"), array('jpg', 'gif', 'png'));
})->select(array('*', 'vendors.id as vendor_id'))->skip(($page - 1) * 10)->take(10)->order_by('vendors.created_at', 'desc')->get();
$this->layout->content = $view;
}