Leaf PHP - A Simple and Elegant PHP Framework
Leaf PHP is a lightweight, elegant PHP framework designed to make web development faster and simpler. Whether you're a beginner or an experienced developer, Leaf provides a clean and simple syntax for building web applications with minimal effort. It's perfect for developers who appreciate simplicity but want powerful features under the hood.
Key Features
- Minimal Setup: Get started with just a few lines of code. No complicated configurations or installations required.
- Built-in Routing: Define your routes easily, and handle HTTP requests with clear, straightforward syntax.
- Modular Components: Use built-in modules for common tasks like session management, request handling, and more, or build your own custom modules.
- Blade Templating: Leaf comes with Blade templating, which allows for reusable and clean code for views.
- Database Abstraction: Quickly interact with databases using Leaf's elegant and simple query builder.
- Comprehensive Documentation: Leaf offers full documentation, making it easy to get started and find answers to your questions.
Getting Started with Leaf PHP
To get started with Leaf, you can set up a basic project in just a few steps. Below is an example of a simple Leaf PHP setup:
get('/', function() {
return 'Hello, Leaf PHP!';
});
// Start the app
$app->start();
?>
This code snippet defines a basic route that listens for GET requests to the root URL ('/'). When the route is hit, the server responds with "Hello, Leaf PHP!".
Using Blade Templating with Leaf
Leaf integrates with the Blade templating engine, which helps keep your views clean and reusable. Here's a simple example:
get('/welcome', function() {
return view('welcome', ['name' => 'Abdulbasit']);
});
?>
In this example, the view 'welcome.blade.php' could look like this:
Welcome
Welcome, {{ $name }}!
Leaf automatically compiles and renders Blade views, and you can easily pass data from your controller or route to the view, like the `name` variable in this example.
Database Abstraction with Leaf
Leaf makes working with databases a breeze. Here's an example of querying data from a database using Leaf's query builder:
get('/users', function() {
$users = \Leaf\DB::table('users')->get();
return view('users', ['users' => $users]);
});
?>
In this example, Leaf's database abstraction is used to retrieve all users from the `users` table. You can easily perform various operations such as `select`, `insert`, `update`, and `delete` using a simple and readable syntax.