Search by

davingm / laravel

davingm

Laravel starter project by davingm.

Package info

github.com/davingm/laravel

Language:Blade

Type:project

pkg:composer/davingm/laravel

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.1 2026-09-22 05:14 UTC

This package is auto-updated.

Last update: 2026-09-22 05:16:13 UTC


README

Laravel starter project by davingm, powered by the Laravel framework.

Create a New Project

composer create-project davingm/laravel nama-proyek
cd nama-proyek

After installation, the project is ready to use — including the artisan CLI tool.

Development

Start the development environment (Laravel server + queue worker in one terminal):

artisan dev

The CLI will display the Laravel logo, port info, and color-coded output from both processes.

Artisan Commands

The artisan command is a shortcut for php artisan:

artisan migrate
artisan make:model User
artisan make:controller UserController
artisan route:list
artisan tinker
artisan <any-artisan-command>

CLI Setup (manual, if needed)

The CLI is set up automatically on composer create-project. If you need to set it up manually:

cd .davingm
npm install
npm link

After linking, artisan will be available globally from the project directory.

Requirements

  • PHP >= 8.3
  • Composer
  • Node.js >= 18

License

MIT