move models & view referent
This commit is contained in:
10
SRC/app/Models/Auteur.php
Normal file
10
SRC/app/Models/Auteur.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Auteur extends Model {
|
||||
|
||||
protected $table = 'auteur';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
10
SRC/app/Models/Datation.php
Normal file
10
SRC/app/Models/Datation.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Datation extends Model {
|
||||
|
||||
protected $table = 'datation';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
10
SRC/app/Models/Description.php
Normal file
10
SRC/app/Models/Description.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Description extends Model {
|
||||
|
||||
protected $table = 'description';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
10
SRC/app/Models/Designation.php
Normal file
10
SRC/app/Models/Designation.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Designation extends Model {
|
||||
|
||||
protected $table = 'designation';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
10
SRC/app/Models/Domaine.php
Normal file
10
SRC/app/Models/Domaine.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Domaine extends Model {
|
||||
|
||||
protected $table = 'domaine';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
10
SRC/app/Models/Jeu.php
Normal file
10
SRC/app/Models/Jeu.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Jeu extends Model {
|
||||
|
||||
protected $table = 'jeu';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
27
SRC/app/Models/ListeOeuvre.php
Normal file
27
SRC/app/Models/ListeOeuvre.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Auth;
|
||||
|
||||
class ListeOeuvre extends Model {
|
||||
|
||||
protected $table = 'listeoeuvre';
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
public function oeuvres()
|
||||
{
|
||||
return $this->belongsToMany('App\Models\Oeuvre', 'assolisteaoeuvre');
|
||||
}
|
||||
|
||||
public function jeux()
|
||||
{
|
||||
return $this->belongsToMany('App\Models\Jeu', 'assolisteajeu');
|
||||
}
|
||||
|
||||
public function scopeCurrentUser($query)
|
||||
{
|
||||
$idUser = Auth::user()->id;
|
||||
return $query->where('iduser', $idUser);
|
||||
}
|
||||
}
|
10
SRC/app/Models/Matiere.php
Normal file
10
SRC/app/Models/Matiere.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Matiere extends Model {
|
||||
|
||||
protected $table = 'matiere';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
10
SRC/app/Models/Oeuvre.php
Normal file
10
SRC/app/Models/Oeuvre.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Oeuvre extends Model {
|
||||
|
||||
protected $table = 'oeuvre';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
10
SRC/app/Models/Technique.php
Normal file
10
SRC/app/Models/Technique.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Technique extends Model {
|
||||
|
||||
protected $table = 'technique';
|
||||
|
||||
public $timestamps = false;
|
||||
}
|
42
SRC/app/Models/User.php
Executable file
42
SRC/app/Models/User.php
Executable file
@ -0,0 +1,42 @@
|
||||
<?php namespace App\Models;
|
||||
|
||||
use Illuminate\Auth\Authenticatable;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Auth\Passwords\CanResetPassword;
|
||||
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
||||
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
|
||||
use Auth;
|
||||
|
||||
class User extends Model implements AuthenticatableContract, CanResetPasswordContract {
|
||||
use Authenticatable, CanResetPassword;
|
||||
|
||||
protected $table = 'users';
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = ['name', 'email', 'password'];
|
||||
|
||||
|
||||
/**
|
||||
* The attributes excluded from the model's JSON form.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $hidden = ['password', 'remember_token'];
|
||||
|
||||
public function scopeCurrent($query)
|
||||
{
|
||||
$idUser = Auth::user()->id;
|
||||
return $query->where('id', $idUser)->first();
|
||||
}
|
||||
|
||||
public function scopeReferents($query)
|
||||
{
|
||||
return $query->where('droits', '0');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user