[ 'Romanah\Gokbakja\Models\Building', 'key' => 'building_id' ], 'mechanic' => [ 'Romanah\Gokbakja\Models\Employee', 'key' => 'mechanic_id', 'conditions' => 'is_mechanic = 1' ], 'employee' => [ 'Romanah\Gokbakja\Models\Employee', 'key' => 'employee_id' ], ]; public $hasMany = [ 'machine_production' => [ 'Romanah\Gokbakja\Models\ProductionMachine', 'key' => 'machine_id' ] ]; /** * @var string The database table used by the model. */ public $table = 'romanah_gokbakja_machine'; /** * @var array Validation rules */ public $rules = [ ]; }