ArticleLike.php 243 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ArticleLike extends Model{
  5. protected $table='article_like';
  6. public function article(){
  7. return $this->belongsTo(Article::class,'article_id');
  8. }
  9. }