Appzcoder\CrudGenerator\Commands\CrudModelCommand::replaceFillable PHP Метод

replaceFillable() защищенный Метод

Replace the fillable for the given stub.
protected replaceFillable ( string &$stub, string $fillable )
$stub string
$fillable string
    protected function replaceFillable(&$stub, $fillable)
    {
        $stub = str_replace('{{fillable}}', $fillable, $stub);
        return $this;
    }