├── .env.example ├── .gitignore ├── .htaccess ├── App ├── Controllers │ ├── Articles.php │ ├── Home.php │ └── User.php ├── Models │ └── Article.php └── routes │ ├── api.php │ └── web.php ├── Core ├── App.php ├── Database.php ├── Helpers │ └── Redirect.php ├── Route.php ├── View.php └── helpers.php ├── README.md ├── composer.json ├── index.php └── public ├── cache ├── 326a174ce19d8c5e34c354fcccd892a75b2287b1.php ├── 727b344556d65fce0548515f962f39512527ad5a.php ├── 89b1cb36cbf6d6c515cdea2411fc894ce7e79d66.php ├── 9e0e73979a2f5bbaa73cebf817ad338e4c4fab57.php ├── f5b4f5c8b0130c9303e9bd3f39defaff05cde097.php └── fc3276956d45b1b43c9818e2ff19e84f8a764b42.php └── views ├── article.blade.php ├── articles.blade.php ├── index.blade.php ├── layout.blade.php └── static ├── footer.blade.php └── header.blade.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .env 3 | vendor 4 | composer.lock -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/.htaccess -------------------------------------------------------------------------------- /App/Controllers/Articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/App/Controllers/Articles.php -------------------------------------------------------------------------------- /App/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/App/Controllers/Home.php -------------------------------------------------------------------------------- /App/Controllers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/App/Controllers/User.php -------------------------------------------------------------------------------- /App/Models/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/App/Models/Article.php -------------------------------------------------------------------------------- /App/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/App/routes/api.php -------------------------------------------------------------------------------- /App/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/App/routes/web.php -------------------------------------------------------------------------------- /Core/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/Core/App.php -------------------------------------------------------------------------------- /Core/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/Core/Database.php -------------------------------------------------------------------------------- /Core/Helpers/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/Core/Helpers/Redirect.php -------------------------------------------------------------------------------- /Core/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/Core/Route.php -------------------------------------------------------------------------------- /Core/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/Core/View.php -------------------------------------------------------------------------------- /Core/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/Core/helpers.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/composer.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/index.php -------------------------------------------------------------------------------- /public/cache/326a174ce19d8c5e34c354fcccd892a75b2287b1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/cache/326a174ce19d8c5e34c354fcccd892a75b2287b1.php -------------------------------------------------------------------------------- /public/cache/727b344556d65fce0548515f962f39512527ad5a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/cache/727b344556d65fce0548515f962f39512527ad5a.php -------------------------------------------------------------------------------- /public/cache/89b1cb36cbf6d6c515cdea2411fc894ce7e79d66.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/cache/89b1cb36cbf6d6c515cdea2411fc894ce7e79d66.php -------------------------------------------------------------------------------- /public/cache/9e0e73979a2f5bbaa73cebf817ad338e4c4fab57.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/cache/9e0e73979a2f5bbaa73cebf817ad338e4c4fab57.php -------------------------------------------------------------------------------- /public/cache/f5b4f5c8b0130c9303e9bd3f39defaff05cde097.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/cache/f5b4f5c8b0130c9303e9bd3f39defaff05cde097.php -------------------------------------------------------------------------------- /public/cache/fc3276956d45b1b43c9818e2ff19e84f8a764b42.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/cache/fc3276956d45b1b43c9818e2ff19e84f8a764b42.php -------------------------------------------------------------------------------- /public/views/article.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/views/article.blade.php -------------------------------------------------------------------------------- /public/views/articles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/views/articles.blade.php -------------------------------------------------------------------------------- /public/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/views/index.blade.php -------------------------------------------------------------------------------- /public/views/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/views/layout.blade.php -------------------------------------------------------------------------------- /public/views/static/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/views/static/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayfunerbilen/prototurk-mvc/HEAD/public/views/static/header.blade.php --------------------------------------------------------------------------------