Attention.php 255 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Attention extends Model
  5. {
  6. protected $table = 'attentions';
  7. protected $fillable = ['user_id','source_id','source_type'];
  8. public static function store(){
  9. }
  10. }