Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function __construct($name, $route, $property = '', $icon = null) |
||
23 | { |
||
24 | $this->name = Str::ucfirst($name); |
||
25 | $this->plural_name = Str::plural(Str::ucfirst($name)); |
||
26 | $this->property = $property; |
||
27 | $this->route = $route ?? Str::plural($name); |
||
28 | $this->class = $this->makeDynamicClass($this->name); |
||
29 | $this->icon = $icon; |
||
30 | } |
||
55 |