Site du proximo, utilisé pour gérer le stock.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Article.php 413B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class Article extends Model
  6. {
  7. protected $fillable = [
  8. 'name','description','quantity','price','code','image','category_id'
  9. ];
  10. protected $with = [
  11. 'category'
  12. ];
  13. public function category(){
  14. return $this->belongsTo('App\Models\Categorie');
  15. }
  16. }