11 lines
155 B
PHP
11 lines
155 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CompanySetting extends BaseModel
|
|
{
|
|
protected $table = 'organisation_settings';
|
|
}
|