for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sfneal\Casts;
use Vkovic\LaravelCustomCasts\CustomCastBase;
class NewlineCast extends CustomCastBase
{
/**
* Transcode newline characters as html <br> chars
*
* @param string $value
* @return string
*/
public function setAttribute($value)
return $value;
}
public function castAttribute($value)
return !empty($value) ? nl2br($value) : null;