RecruitPost.php 189 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models\Recruit;
  3. use Illuminate\Database\Eloquent\Model;
  4. class RecruitPost extends Model
  5. {
  6. protected $table = 'recruit_post';
  7. protected $guarded = [];
  8. }