Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
730 B
PHP
Raw Permalink Normal View History

2020-07-22 16:18:56 +02:00
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class Panel extends Component
{
/**
* The Panel title.
*
* @var string
*/
public $title;
2020-07-24 06:13:00 +02:00
/**
* The Panel body class.
*
* @var string
*/
public $body_class;
2020-07-22 16:18:56 +02:00
/**
* Create a new component instance.
*
* @return void
*/
2024-09-29 11:05:44 -05:00
public function __construct($title = null, $bodyClass = null)
2020-07-22 16:18:56 +02:00
{
$this->title = $title;
2020-07-24 06:13:00 +02:00
$this->body_class = $bodyClass;
2020-07-22 16:18:56 +02:00
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\View\View|string
*/
public function render()
{
return view('components.panel');
}
}