Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
🔧 updated app paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Apr 30, 2021
1 parent c6d2502 commit 2273806
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Config/paths.php
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
<?php

return [
"controllers_path" => "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" => ".",
];

0 comments on commit 2273806

Please sign in to comment.