File "Audit.php"

Full path: /home/qooetu/costes.qooetu.com/app/Audit.php
File size: 242 B (242 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use App\User;


class Audit extends Model
{
    protected $table="audits";
    public function user(){
    	return $this->belongsTo(User::class,'user_id');
    }
}