Software Developer
<?php
namespace App;
use Illuminate\Database\Eloquent\Model as Eloquent;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Campus extends Model
{
use HasFactory;
protected $table = 'campus';
protected $primaryKey = 'id';
protected $fillable = ['name', 'address'];
public function teacher()
{
return $this->belongsTo(Models\Teacher::class);
}
public function version()
{
return $this->belongsTo(Models\Version::class);
}
}
9th August, 2022
16th April, 2022
1st April, 2022
7th September, 2021
25th August, 2021
25th August, 2021
10th June, 2021
2nd April, 2021
Join our community of like-minded individuals and enjoy the following benefits:
ExpertSuggestion is a platform for developers where they can contribute and share snippets, tutorials, and programming solutions with other developers like them.
Designed With Boostrap by expertsuggestion