%PDF- %PDF-
Direktori : /home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Fields/ |
Current File : //home/forge/api-takeaseat.eco-n-tech.co.uk/vendor/laravel/nova/src/Fields/Markdown.php |
<?php namespace Laravel\Nova\Fields; class Markdown extends Field { use Expandable; /** * The field's component. * * @var string */ public $component = 'markdown-field'; /** * Indicates if the element should be shown on the index view. * * @var bool */ public $showOnIndex = false; /** * Prepare the element for JSON serialization. * * @return array */ public function jsonSerialize() { return array_merge(parent::jsonSerialize(), [ 'shouldShow' => $this->shouldBeExpanded(), ]); } }