ExamSubjectsModel.php 410 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ExamSubjectsModel extends BaseModel
  5. {
  6. protected $table = 'exam_subjects';
  7. public $timestamps = false;
  8. public function getIconAttribute($value)
  9. {
  10. return $value ? get_image_url($value) : '';
  11. }
  12. public function setIconAttribute($value)
  13. {
  14. return $value ? get_image_path($value) : '';
  15. }
  16. }