photo/app/Models/Software.php

15 lines
232 B
PHP
Raw Normal View History

2019-11-27 10:30:43 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Software extends Model
{
2019-12-26 04:56:31 +00:00
protected $fillable = ['name','model_id'];
2019-11-27 10:30:43 +00:00
public function model()
{
return $this->belongsTo(\App\Models\Model::class);
}
}