Laraveldaily\Quickadmin\Builders\ViewsBuilder::names PHP Method

names() private method

Generate names for the views
private names ( )
    private function names()
    {
        $camelCase = ucfirst(Str::camel($this->name));
        $this->route = strtolower($camelCase);
        $this->path = strtolower($camelCase);
        $this->resource = strtolower($camelCase);
        $this->model = strtolower($camelCase);
    }