13 lines
202 B
PHP
13 lines
202 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Category extends Model
|
|
{
|
|
public function events(){
|
|
return $this->belongsToMany('App\Events', 'event_category');
|
|
}
|
|
}
|