예제 #1
0
 public function setDescriptionAttribute($value)
 {
     $markdown = new Markdowner();
     $this->attributes['description'] = $markdown->toHTML($value);
 }
예제 #2
0
파일: Post.php 프로젝트: 40DayStartup/Core
 public function setContentAttribute($value)
 {
     $markdown = new Markdowner();
     $this->attributes['content'] = $markdown->toHTML($value);
 }