LotteryPrize.php 245 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. class LotteryPrize extends Model
  6. {
  7. use SoftDeletes;
  8. protected $table = 'lottery_prize';
  9. protected $guarded = [];
  10. }