for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
use Backpack\CRUD\app\Models\Traits\CrudTrait;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Spatie\Translatable\HasTranslations;
/**
* NOTE: In the current configuration, the campus with the ID of 1 represent the school itself
* the campus model with the ID of 2 represents all external courses
*
* @mixin IdeHelperCampus
*/
class Campus extends Model
{
use CrudTrait;
Backpack\CRUD\app\Models\Traits\CrudTrait
App\Models\Campus
$fakeColumns
$identifiableAttribute
$Type
use SoftDeletes;
use HasTranslations;
public array $translatable = ['name'];
public $timestamps = false;
protected $fillable = ['name'];
}