File: D:/HostingSpaces/SBogers10/meulendijk.komma.pro/app/KommaApp/Kms/Core/Attributes/KmsSeparator.php
<?php
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\KommaApp\Kms\Core\Attributes;
use View;
class KmsSeparator extends KmsAttribute{
function __construct($key, $value, array $options = [], array $errors = [], $siteId = null, $languageId = null, $section = null)
{
parent::__construct($key, $value, $options, $errors, $siteId, $languageId, $section);
}
public function render()
{
return View::make('kms/attributes.separator', [
'attribute' => $this
]);
}
}