| Total Complexity | 4 |
| Total Lines | 72 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class Meta extends Component |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The meta title. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | public $title; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The meta author. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | public $author; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * The meta description. |
||
| 30 | * |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | public $description; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * The meta url. |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | public $url; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * The meta image. |
||
| 44 | * |
||
| 45 | * @var string |
||
| 46 | */ |
||
| 47 | public $image; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * The meta copyright. |
||
| 51 | * |
||
| 52 | * @var string |
||
| 53 | */ |
||
| 54 | public $copyright; |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Create a new meta component instance. |
||
| 58 | * |
||
| 59 | * @return void |
||
| 60 | */ |
||
| 61 | public function __construct( |
||
| 74 | } |
||
| 75 | |||
| 76 | /** |
||
| 77 | * Get the view / contents that represent the component. |
||
| 78 | * |
||
| 79 | * @return \Illuminate\Contracts\View\View|Closure|string |
||
| 80 | */ |
||
| 81 | public function render() |
||
| 86 |