move models & view referent

This commit is contained in:
Malibu
2015-02-20 15:00:09 +01:00
parent fe746d6bbb
commit 5fbb41a461
19 changed files with 97 additions and 26 deletions

10
SRC/app/Models/Jeu.php Normal file
View File

@ -0,0 +1,10 @@
<?php namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Jeu extends Model {
protected $table = 'jeu';
public $timestamps = false;
}