1 | <?php |
||
7 | abstract class BaseTenantModel extends Model |
||
8 | { |
||
9 | /** |
||
10 | * Construct the model with the provided config settings |
||
11 | * or use our fallbacks if none are provided |
||
12 | */ |
||
13 | public function __construct(array $attributes = []) |
||
22 | |||
23 | /** |
||
24 | * Merge the fillable fields with any provided in the extending class |
||
25 | */ |
||
26 | public function setFillable() |
||
36 | |||
37 | /** |
||
38 | * Merge the fillable fields with any provided in the extending class |
||
39 | */ |
||
40 | public function owner() |
||
44 | } |
||
45 |