D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Filename :
Artistschange.php
back
Copy
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Artistschange extends Model { public function old_artist(){ return $this->hasOne('App\Artist', 'id', 'artist_old_id'); } public function new_artist(){ return $this->hasOne('App\Artist', 'id', 'artist_new_id'); } }