├── .env ├── .gitignore ├── app ├── controllers │ ├── HomeController.php │ └── OfficeController.php └── views │ ├── office.php │ └── home.php ├── helpers ├── custom │ ├── custom_files.php │ ├── custom_functions.php │ └── customtwo │ │ └── another_function.php └── Framework │ ├── views.php │ └── json.php ├── routers ├── web.php ├── routes.php └── RouteManager.php ├── server.php ├── .htaccess ├── composer.json ├── LICENSE ├── public └── index.php ├── README.md └── composer.lock /.env: -------------------------------------------------------------------------------- 1 | APP_URL=http://localhost -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imransmartinsider/flint/HEAD/.gitignore -------------------------------------------------------------------------------- /app/controllers/HomeController.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 |This is office controller
13 | 14 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 |Flint is the simplest, minimal solution for PHP developers. Achieve most of your tasks with just a click. It is revolutionary.
86 | Get Started 87 |