blob: c732147c590ef0c14ae3ba3c463259d8463fdaee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?php
namespace UserFrosting\Sprinkle\ExtendUser\Database\Scopes;
use Illuminate\Database\Eloquent\Scope;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
class MemberAuxScope implements Scope
{
/**
* Apply the scope to a given Eloquent query builder.
*
* @param \Illuminate\Database\Eloquent\Builder $builder
* @param \Illuminate\Database\Eloquent\Model $model
* @return void
*/
public function apply(Builder $builder, Model $model)
{
$baseTable = $model->getTable();
// Hardcode the table name here, or you can access it using the classMapper and `getTable`
$auxTable = 'members';
// Specify columns to load from base table and aux table
$builder->addSelect(
"$baseTable.*",
"$auxTable.city as city",
"$auxTable.country as country"
);
// Join on matching `member` records
$builder->leftJoin($auxTable, function ($join) use ($baseTable, $auxTable) {
$join->on("$auxTable.id", '=', "$baseTable.id");
});
}
}
|