Archived
1
0
Fork 0
This repository has been archived on 2021-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
ifnews/app/Models/Author.php
2019-09-13 00:03:56 +07:00

16 lines
246 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Models\Game;
class Author extends Model
{
protected $table = 'authors';
public function games() {
return $this->belongsToMany(Game::class, 'authors_games');
}
}