for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Crocodicstudio\Crudbooster\controllers\CBController;
trait CbLayoutLoader
{
public $load_js = [];
public $load_css = [];
public $scriptJs = null;
public $style_css = null;
public $alert = [];
protected function cbLayoutLoader()
$this->data['alerts'] = $this->alert;
data
$this->data['style_css'] = $this->style_css;
$this->data['load_js'] = $this->load_js;
$this->data['scriptJs'] = $this->scriptJs;
$this->data['load_css'] = $this->load_css;
}