32 lines
728 B
PHP
32 lines
728 B
PHP
|
<?php
|
||
|
|
||
|
namespace Zoomyboy\LaravelNami;
|
||
|
|
||
|
use Illuminate\Support\Arr;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class Subactivity extends Model {
|
||
|
|
||
|
protected $guarded = [];
|
||
|
|
||
|
public static function fromNami($item) {
|
||
|
$item = collect($item)
|
||
|
->only(['descriptor', 'id'])
|
||
|
->mapWithKeys(function($item,$key) {
|
||
|
if ($key == 'id') { return ['id' => $item]; }
|
||
|
return ['name' => $item];
|
||
|
})->toArray();
|
||
|
|
||
|
return (new self($item));
|
||
|
}
|
||
|
|
||
|
public function getNameAttribute() {
|
||
|
return ucfirst($this->attributes['name']);
|
||
|
}
|
||
|
|
||
|
public function getIsNullAttribute() {
|
||
|
return $this->attributes['id'] == self::getNullValue();
|
||
|
}
|
||
|
|
||
|
}
|