12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Repositories\Models\Dwbs;
- use App\Repositories\Models\Model;
- class StatisticalResource extends Model
- {
- /**
- * @var string
- */
- protected $table = 'dwbs_statistical_resources';
- protected $guarded = [];
- /**
- * The attributes excluded from the model's JSON form.
- *
- * @var array
- */
- protected $hidden = [];
- protected $casts = [
- 'user_ids' => 'json'
- ];
- public function getPathAttribute($val)
- {
- if (empty($val)) {
- return null;
- }
- return path_to_url($val);
- }
- }
|