mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
26 lines
364 B
PHP
26 lines
364 B
PHP
<?php
|
|
|
|
namespace Nova\Start;
|
|
|
|
use Laravel\Nova\Card;
|
|
|
|
class Start extends Card
|
|
{
|
|
/**
|
|
* The width of the card (1/3, 1/2, or full).
|
|
*
|
|
* @var string
|
|
*/
|
|
public $width = 'full';
|
|
|
|
/**
|
|
* Get the component name for the element.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function component()
|
|
{
|
|
return 'start';
|
|
}
|
|
}
|