mirror of
https://github.com/ConjureETS/Interface-Admin.git
synced 2026-03-24 04:21:06 +00:00
20 lines
284 B
PHP
20 lines
284 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Massimo
|
|
* Date: 2019-09-29
|
|
* Time: 3:07 PM
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Program extends Model
|
|
{
|
|
public function member()
|
|
{
|
|
return $this->belongsTo('App\Models\Member');
|
|
}
|
|
}
|