| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class ShowPage extends Component |
||
| 9 | { |
||
| 10 | public $name; |
||
| 11 | |||
| 12 | public $route; |
||
| 13 | |||
| 14 | public $model; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new component instance. |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function __construct($name, $route, $model) |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Get the view / contents that represent the component. |
||
| 30 | * |
||
| 31 | * @return \Illuminate\Contracts\View\View|\Closure|string |
||
| 32 | */ |
||
| 33 | public function render() |
||
| 38 |