예제 #1
0
 public function fields()
 {
     $fields = parent::fields();
     $fields['full_name'] = function () {
         return $this->first_name . ' ' . $this->last_name;
     };
     return $fields;
 }