/home2/mshostin/crm.ms-hostingladz.com/app/Models/Source.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Source extends Model
{
    use HasFactory;
    protected $table = "source";
    protected $fillable = [
        "title",
    ];
}