<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class ServiceAttachment extends Model
{
    protected $table = "service_attchment";
    protected $guarded=['id'];
}