In this tutorial, we will go through the setup process and the main development tasks to create a Codeigniter 4 application from scratch. CodeIgniter is a PHP application development framework featuring a small footprint and great documentation. However, it’s simple and flexible enough to let you choose your way to work. It provides simple configuration and helpful tools for common development tasks.
Continue reading “Create a Codeigniter 4 Application”Tag: Laravel
Building a Laravel 8 Application: Routes and Views
In this post, we start building a Laravel 8 Application just created. You can follow the tutorial Create a Laravel 8 application from scratch to install and create your first project and the initial application structure. However, this can be applied to a project created using the Laravel Sail tools or Composer.
The main areas to work at the start of the project are:
- Understanding the project directory structure
- Navigation paths, adding/modifying routes
- Application screens, creating/modifying views
Create a Laravel 8 application from scratch
In this tutorial, we will explore how to create a Laravel 8 application from scratch and then prepare your application for development. However, the overall process changed from the previous version (Laravel 7), improving the developer experience with a fresh set of tools. Now, the new Laravel 8 provides Sail, a built-in solution for running your Laravel project using Docker.
Continue reading “Create a Laravel 8 application from scratch”Configure PHP and Laravel Framework
In this guide we configure PHP and Laravel Framework to build web applications and REST APIs. As a result, you can prepare the environment to start the development process in a Laravel Project.
Note: for the newest Laravel 8, you can follow the instructions in this new post: Create a Laravel 8 application from scratch
After this process, you will get installed the following components:
- PHP (PHP 7 or newer)
- MySQL/MariaDB server engine and client
- PEAR (PHP repository of common reusable components)
- Composer (PHP package and dependency manager)
- XDebug (PHP debugger used by unit tests tools like PHPUnit)
- Laravel command line tools (
laravel
andphp artisan
)
Continue reading “Configure PHP and Laravel Framework”
How to change the Laravel public folder path
In this post, we will show how to change the Laravel public
folder path (the default path for publishing public content, including the index). Actually, there is no configuration value to change this, but you can change some special files to change it to another location, and your application will continue working as expected.
Note: For Laravel 8, you can check this new post: Create a Laravel 8 application from scratch
Continue reading “How to change the Laravel public folder path”