| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class ExamSubjectsModel extends BaseModel
- {
- protected $table = 'exam_subjects';
- public $timestamps = false;
- protected $fillable = [
- 'subject_name',
- 'pid',
- 'type',
- 'attr_type',
- 'description',
- 'icon',
- 'answer_times',
- 'sort',
- 'create_time',
- 'update_time',
- 'status',
- 'mark'
- ];
- public function getIconAttribute($value)
- {
- return $value ? get_image_url($value) : '';
- }
- public function setIconAttribute($value)
- {
- return $value ? get_image_path($value) : '';
- }
- }
|