17 lines
230 B
PHP
17 lines
230 B
PHP
<?php
|
|
|
|
class Model extends Elegant {
|
|
|
|
// Declare the rules for the form validation
|
|
protected $rules = array(
|
|
'name' => 'required|min:3',
|
|
);
|
|
|
|
public function assets()
|
|
{
|
|
return $this->hasMany('Asset', 'model_id');
|
|
|
|
}
|
|
|
|
}
|