Database
Using the app:install
Artisan command you can install the database
component:
php <your-app-name> app:install database
As you might have already guessed, it is Laravel's Eloquent component that works like a breeze in the Laravel Zero environment too.
Usage:
use DB;
DB::table('users')->insert(
['email' => 'enunomaduro@gmail.com']
);
$users = DB::table('users')->get();
Laravel Database Migrations and Database Seeding features are also included.