예제 #1
0
파일: Links.php 프로젝트: karpuzkan/laravel
 public function getCBodyAttribute()
 {
     return \Request::segment(1) == 'eng' ? $this->eng_body : $this->body;
 }
예제 #2
0
파일: Menu.php 프로젝트: karpuzkan/laravel
 public function getBodyAttribute($value)
 {
     return \Request::segment(1) == 'eng' ? $this->eng_body : $value;
 }
예제 #3
0
 public function getAltTagAttribute($value)
 {
     return \Request::segment(1) == 'eng' ? $this->eng_alt_tag : $value;
 }