PHPackages                             revolution/self-ordering - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. revolution/self-ordering

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

revolution/self-ordering
========================

Self Ordering System

6.0.0(2mo ago)2112.7k↑22.2%4MITPHPPHP ^8.3CI passing

Since Feb 2Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/kawax/self-ordering)[ Packagist](https://packagist.org/packages/revolution/self-ordering)[ RSS](/packages/revolution-self-ordering/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelog (10)Dependencies (14)Versions (71)Used By (0)

Self Ordering System
====================

[](#self-ordering-system)

[![packagist](https://camo.githubusercontent.com/6e15bbba2d12fd1cb610b0a2501a32b3265f4726d0d6b07ae6c3c0ec7a319d73/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f762f7265766f6c7574696f6e2f73656c662d6f72646572696e67)](https://packagist.org/packages/revolution/self-ordering)[![php](https://camo.githubusercontent.com/cc4d2add91c0e4a781783825f60247c1c6a104d9c6b3f83e52e60c7cb037f17d/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f7068702f7265766f6c7574696f6e2f73656c662d6f72646572696e67)](https://camo.githubusercontent.com/cc4d2add91c0e4a781783825f60247c1c6a104d9c6b3f83e52e60c7cb037f17d/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f7068702f7265766f6c7574696f6e2f73656c662d6f72646572696e67)[![tests](https://github.com/kawax/self-ordering/workflows/tests/badge.svg)](https://github.com/kawax/self-ordering/workflows/tests/badge.svg)

オープンソースのセルフオーダーシステム

[![screenshot_1](./docs/screenshot_1.png)](./docs/screenshot_1.png)

目的
--

[](#目的)

スマホで注文するセルフオーダーの普及。

定義
--

[](#定義)

- **セルフオーダー**：飲食店などの店内で、自分のスマホで注文。スマホアプリのインストールは不要。
- モバイルオーダー：スマホアプリをインストールして注文。

ここで定義してるセルフオーダーをテーブルオーダーと呼ぶこともあるし、店舗側で用意しているタブレットでの注文をセルフオーダーと呼ぶこともある。
言葉の定義は世の中的にもまだ固まってないけどここで提供するのはWebシステム一つで実現できるセルフオーダー。
スマホのカメラでQRコードを読み込んで、スマホのブラウザで注文システムを表示。アプリのインストールや会員登録は不要。

概要
--

[](#概要)

- 1店舗1システムで動かす。
- 店舗ごとにカスタマイズして使う前提。
- 商用利用可能。開発・設置・運用代行をビジネスにして良い。
- デフォルトでは決済やPOS連携機能は含めない。拡張はできるので必要なら個別に対応。
- Vercelで動かしやすいようにデータベースなしでの運用も可能にする。
- バージョンアップしやすいようにLaravel用のcomposerパッケージとして作る。Laravelアプリとしては作らない。ほとんどの機能はパッケージ内に含めるのでLaravel側での開発作業は少なめ。

デモ
--

[](#デモ)

-

動作環境
----

[](#動作環境)

- PHP ^8.3
- Laravel ^13.x
- Livewire 4.x
- Tailwind 4.x

バージョン
-----

[](#バージョン)

verPHPLaravel1.x^7.4/^8.08.x2.x^8.09.x/10.x3.x^8.110.x4.x^8.211.x5.x^8.212.x6.x^8.313.xインストール
------

[](#インストール)

「Laravelでセルフオーダーシステムを作るためのスターターキット」なので必ずLaravelの新規プロジェクトを作るところから始めてください。`ordering:install`コマンドでファイルが上書きされます。

```
curl -s "https://laravel.build/self-ordering-project" | bash
cd ./self-ordering-project

composer require revolution/self-ordering

php artisan ordering:install --vercel
# Vercel用のファイルが不要なら--vercelを付けない
php artisan ordering:install

npm install && npm run build

./vendor/bin/sail up -d
```

簡単に始めるためのプロジェクトテンプレート。

### .env

[](#env)

```
ORDERING_MENU_DRIVER=array
ORDERING_ADMIN_PASSWORD=
ORDERING_DESCRIPTION=""

ORDERING_MICROCMS_API_KEY=
ORDERING_MICROCMS_ENDPOINT=https://

```

### routes/web.php

[](#routeswebphp)

`/`のルートはQRコード表示に使う。

```
//Route::get('/', function () {
//    return view('welcome');
//});

Route::view('/', 'ordering::help');
```

インストール後にページを増やすのは自由。

### アンインストール

[](#アンインストール)

新規プロジェクトにインストールしているはずなのでこのパッケージだけアンインストールはできません。プロジェクトごと終了。

クイックスタート
--------

[](#クイックスタート)

上記の手順でインストール後に必要なことは「メニューデータの管理方法」と「注文情報の送信先」 を決める。

### ここでの前提

[](#ここでの前提)

- 決済機能は使わない。
- セルフオーダーは口頭での注文取りの代わり。

### メニューデータの管理方法

[](#メニューデータの管理方法)

店舗側でメニューを変更するなら [microCMS](https://microcms.io/) が一番簡単だろうからmicroCMSにアカウントを作って進める。

### 注文情報の送信先

[](#注文情報の送信先)

メールやLINE Notifyなど「注文された時にすぐに気付ける方法」を選ぶ。

### 店舗側での作業

[](#店舗側での作業)

- 店内のテーブルすべてに番号を振る。
- QRコードをテーブルに掲示。
- 「セルフオーダーの使い方」を掲示。こちらで用意したいけどまだない。
- セルフオーダーから注文が入った時のオペレーションを確認。

仕様
--

[](#仕様)

### ページ

[](#ページ)

- ユーザー向けの注文ページ
    - QRコードを読み込んで表示。テーブル番号を入力。
    - メニューを選択→注文確認画面→決済を使うなら支払い→注文を送信→注文履歴画面。
- 店舗向けのダッシュボード
    - デフォルトでは簡易的なパスワード認証。

### メニューデータ

[](#メニューデータ)

- array（デフォルト）
- microCMS
- Googleスプレッドシート
- Contentful
- データベース
- POS

### 注文送信先

[](#注文送信先)

基本的にはLaravelの通知機能を使う。

- メール
- LINE Notify
- POS

### 決済

[](#決済)

- レジで後払い
- PayPay

LICENCE
-------

[](#licence)

MIT

###  Health Score

59

—

FairBetter than 99% of packages

Maintenance88

Actively maintained with recent releases

Popularity34

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 95.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~27 days

Recently: every ~96 days

Total

70

Last Release

61d ago

Major Versions

1.x-dev → 2.0.02022-02-09

2.x-dev → 3.0.02023-08-27

3.0.2 → 4.0.02024-03-14

4.x-dev → 5.0.02025-02-25

5.0.3 → 6.0.02026-03-18

PHP version history (5 changes)1.0.0PHP ^7.4||^8.0

2.0.0PHP ^8.0

3.0.0PHP ^8.1

4.0.0PHP ^8.2

6.0.0PHP ^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/77618633?v=4)[Revolution](/maintainers/revolution)[@Revolution](https://github.com/Revolution)

---

Top Contributors

[![kawax](https://avatars.githubusercontent.com/u/1502086?v=4)](https://github.com/kawax "kawax (274 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (7 commits)")[![7sus4](https://avatars.githubusercontent.com/u/48387824?v=4)](https://github.com/7sus4 "7sus4 (2 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (1 commits)")

---

Tags

contentfullaravelmicrocmspaypayphpself-orderlaravelstarter-kitself-order

###  Code Quality

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/revolution-self-ordering/health.svg)

```
[![Health](https://phpackages.com/badges/revolution-self-ordering/health.svg)](https://phpackages.com/packages/revolution-self-ordering)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[livewire/flux

The official UI component library for Livewire.

9475.0M86](/packages/livewire-flux)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[linkxtr/laravel-qrcode

A clean, modern, and easy-to-use QR code generator for Laravel

295.1k](/packages/linkxtr-laravel-qrcode)[joelwmale/livewire-quill

Easily add QuillJS with image support to any Laravel Livewire component.

1314.0k](/packages/joelwmale-livewire-quill)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
