Skip to content
Snippets Groups Projects
photo.php 306 B
<?php

namespace prep\models;

class photo extends \Illuminate\Database\Eloquent\Model {
  protected $table = 'annonce';
  protected $primaryKey = 'id';
  public $timestamps = false;

  public function categorie(){
    $s = 'idannonce';
    return $this->belongsTo('\mywishlist\models\annonce', $s);
  }
}