| Current Path : /home/bullgymbny/app/app/ |
| Current File : /home/bullgymbny/app/app/Point.php |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Point extends Model
{
protected $fillable = ['time', 'member_id'];
public $timestamps = false;
public function member(){
return $this->belongsTo('App\Member');
}
}