From 2273806581b6629767cb329b6c07799965c3fce8 Mon Sep 17 00:00:00 2001 From: mychi darko Date: Fri, 30 Apr 2021 22:39:09 +0000 Subject: [PATCH] :wrench: updated app paths --- Config/paths.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Config/paths.php b/Config/paths.php index 494d038..75c092f 100644 --- a/Config/paths.php +++ b/Config/paths.php @@ -1,29 +1,29 @@ "App/Controllers", + "controllers_path" => "Controllers", - "models_path" => "App/Models", + "models_path" => "Models", - "migrations_path" => "App/Database/Migrations", + "migrations_path" => "Migrations", - "seeds_path" => "App/Database/Seeds", + "seeds_path" => "Seeds", - "factories_path" => "App/Database/Factories", + "factories_path" => "Factories", - "helpers_path" => "App/Helpers", + "helpers_path" => "Helpers", - "views_path" => "App/pages", + "views_path" => "pages", - "config_path" => "App/Config", + "config_path" => "Config", "storage_path" => "storage", - "commands_path" => "App/Console", + "commands_path" => "Console", - "routes_path" => "App/Routes", + "routes_path" => "routes", "lib_path" => "Lib", - "public_path" => "public", + "public_path" => ".", ];