1234567891011121314151617 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class SupportDreamModel extends Model
- {
- protected $table = 'support_dream';
- protected $fillable = [
- 'user_id',
- 'dream_id',
- 'to_user_id',
- 'coin',
- 'score',
- ];
- }
|