photo/app/Models/Software.php

15 lines
221 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
{
protected $fillable = ['name'];
public function model()
{
return $this->belongsTo(\App\Models\Model::class);
}
}