관리-도구
편집 파일: PurchaseClient.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class PurchaseClient extends Model { protected $dates = ['deleted_at']; protected $fillable = [ 'date','client_id','Ref','statut','created_at','GrandTotal','updated_at', 'deleted_at' ]; protected $casts = [ 'client_id' => 'integer', 'GrandTotal' => 'double', ]; public function details() { return $this->hasMany('Modules\Store\Models\PurchaseClientDetail'); } public function client() { return $this->belongsTo('App\Models\Client'); } }