for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace Backpack\CRUD\Tests\Config\Models;
use Backpack\CRUD\app\Models\Traits\CrudTrait;
use Illuminate\Database\Eloquent\Model;
class Bang extends Model
{
use CrudTrait;
Backpack\CRUD\app\Models\Traits\CrudTrait
Backpack\CRUD\Tests\Config\Models\Bang
$identifiableAttribute
$Type
$fakeColumns
/*
|--------------------------------------------------------------------------
| GLOBAL VARIABLES
*/
protected $table = 'bangs';
protected $primaryKey = 'id';
public $timestamps = false;
protected $fillable = ['name'];
public function accountDetails()
return $this->belongsToMany('Backpack\CRUD\Tests\config\Models\AccountDetails');
}
public function identifiableAttribute()
return 'name';