| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct($name, $route, $model, $formclass = null, $formid = null) |
||
| 26 | { |
||
| 27 | $this->name = Str::ucfirst($name); |
||
| 28 | $this->route = $route ?? Str::plural(str_replace(' ', '_', $name)); |
||
| 29 | $this->model = $model; |
||
| 30 | $this->formclass = $formclass; |
||
| 31 | $this->formid = $formid; |
||
| 32 | } |
||
| 44 |