Livre.php 300 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Livre extends Model
  5. {
  6. public function auteurs()
  7. {
  8. return $this->belongsToMany('App\Models\Auteur');
  9. }
  10. public function editeur()
  11. {
  12. return $this->belongsTo('App\Models\Editeur');
  13. }
  14. }