View.php 346 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class View extends Model
  6. {
  7. use HasFactory;
  8. protected $casts = [
  9. 'id' => 'string',
  10. 'target_id' => 'string',
  11. ];
  12. protected $fillable = ['target_type', 'target_id', 'user_id', 'user_ip'];
  13. }