Hook.php 230 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Hook extends Model
  5. {
  6. protected $table = 'love_live_rome_hook';
  7. protected $fillable = [
  8. 'type', 'time','gift_count', 'rose','lid'
  9. ];
  10. }