Files
ERP-upgrade/app/Models/OfficeLocationDocument.php
2026-08-26 23:03:11 +00:00

16 lines
320 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class OfficeLocationDocument extends Model
{
protected $table = 'office_location_documents';
protected $guarded = [];
public function location()
{
return $this->belongsTo(OfficeLocation::class, 'office_location_id');
}
}