for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gewaer\Models;
class Languages extends \Baka\Auth\Models\CompanySettings
{
/**
*
* @var integer
*/
public $id;
* @var string
public $name;
public $title;
public $order;
public $created_at;
public $updated_at;
public $is_deleted;
* Initialize method for model.
public function initialize()
parent::initialize();
$this->setSource('languages');
}
* Returns table name mapped in the model.
* @return string
public function getSource(): string
return 'languages';