Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| WaybillFinancialSnapshot | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 1 |
| waybill | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 1 |
|||
| <?php | |
| namespace App; | |
| use Illuminate\Database\Eloquent\Model; | |
| class WaybillFinancialSnapshot extends Model | |
| { | |
| protected $fillable=[ | |
| 'waybill_id','json_content' | |
| ]; | |
| public function waybill(){ | |
| return $this->belongsTo('App\Waybill','waybill_id','id'); | |
| } | |
| } |