PHPackages                             chuckbe/chuckcms-module-order-form - 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. [Admin Panels](/categories/admin)
4. /
5. chuckbe/chuckcms-module-order-form

ActiveLibrary[Admin Panels](/categories/admin)

chuckbe/chuckcms-module-order-form
==================================

Order Form module for use in ChuckCMS

v0.2.24(2y ago)0224BladePHP &gt;=7.2.0

Since Mar 23Pushed 2y ago1 watchersCompare

[ Source](https://github.com/chuckbe/chuckcms-module-order-form)[ Packagist](https://packagist.org/packages/chuckbe/chuckcms-module-order-form)[ Docs](https://github.com/chuckbe/chuckcms-module-order-form)[ RSS](/packages/chuckbe-chuckcms-module-order-form/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (2)Versions (44)Used By (0)

Order Form module for ChuckCMS
==============================

[](#order-form-module-for-chuckcms)

### Requirements

[](#requirements)

- Laravel v6.2 or higher
- ChuckCMS v0.1.39 or higher
- Bootstrap v4.0 or higher
- jQuery v3.2.1 or higher

### Installation

[](#installation)

- Use composer to install

```
composer require chuckbe/chuckcms-module-order-form

```

- Publish config

```
php artisan vendor:publish --provider="Chuckbe\ChuckcmsModuleOrderForm\ChuckcmsModuleOrderFormServiceProvider" --tag=order-form-config

```

- Publish migrations

```
php artisan vendor:publish --provider="Chuckbe\ChuckcmsModuleOrderForm\ChuckcmsModuleOrderFormServiceProvider" --tag=order-form-migrations

```

- Publish assets

```
php artisan vendor:publish --provider="Chuckbe\ChuckcmsModuleOrderForm\ChuckcmsModuleOrderFormServiceProvider" --tag=order-form-assets

```

- Publish views

```
php artisan vendor:publish --provider="Chuckbe\ChuckcmsModuleOrderForm\ChuckcmsModuleOrderFormServiceProvider" --tag=order-form-views

```

> Or publish all at once!
>
> ```
> php artisan vendor:publish --provider="Chuckbe\ChuckcmsModuleOrderForm\ChuckcmsModuleOrderFormServiceProvider" --tag=order-form-config
>
> ```

- Run migrations

```
php artisan migrate

```

- Install module in ChuckCMS

```
php artisan chuckcms-module-order-form:install

```

### Usage

[](#usage)

- After installation make sure to add a location, add a category and a product.
- Create a page for the order form in ChuckCMS and use a custom template file
- Inside that custom template file you can use the following method to call the necessary files

```
//use this to load css and styles
{!! ChuckModuleOrderForm::renderStyles() !!}

//use this to load js and scripts
{!! ChuckModuleOrderForm::renderScripts() !!}

//use this to load the form itself - do not wrap it in a container
{!! ChuckModuleOrderForm::renderForm() !!}

```

- Create a page for the order followup in ChuckCMS and use another custom template file
- Inside that custom template file you can use the following method to call the necessary files

```
//use this to load css and styles
@if(session('order_number'))
{!! ChuckModuleOrderForm::followupStyles(session('order_number')) !!}
@endif

//use this to load js and scripts
@if(session('order_number'))
{!! ChuckModuleOrderForm::followupScripts(session('order_number')) !!}
@endif

//use this to load the followup content itself - do not wrap it in a container
@if(session('order_number'))
{!! ChuckModuleOrderForm::followupContent(session('order_number')) !!}
@endif

```

- Update config file for necessary settings
- Add products
- Start accepting orders!

### Methods

[](#methods)

```
ChuckModuleOrderForm::firstAvailableDate(string $location)

```

This method accepts a location key as used in the config file and will return the first available date for ordering

```
ChuckModuleOrderForm::firstAvailableDateInDaysFromNow(string $location)

```

This method accepts a location key as used in the config file and will return the first available date for ordering in number of days from now

```
ChuckModuleOrderForm::totalSales()

```

The total amount of sales returned as formatted (no thousands separator, 2 decimals, ',' as a decimal separator) result

```
ChuckModuleOrderForm::totalSalesLast7Days()

```

The total amount of sales of the last 7 days returned as formatted result

```
ChuckModuleOrderForm::totalSalesLast7DaysQty()

```

The total number of sales of the last 7 days returned as integer

### Security

[](#security)

Any security bugs discovered, please email to  instead of using the issue reporter.

### License

[](#license)

© MIT License

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 70.9% 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 ~34 days

Recently: every ~89 days

Total

40

Last Release

900d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5599ac2c2c73cedb92bd392657a3f13f3b01bc982ab75b4b84a90417ee1edaef?d=identicon)[KarelBrijs](/maintainers/KarelBrijs)

---

Top Contributors

[![KarelBrijs](https://avatars.githubusercontent.com/u/16884712?v=4)](https://github.com/KarelBrijs "KarelBrijs (112 commits)")[![rawaldeepSingh](https://avatars.githubusercontent.com/u/72438185?v=4)](https://github.com/rawaldeepSingh "rawaldeepSingh (45 commits)")[![dnnslmbrt](https://avatars.githubusercontent.com/u/43238588?v=4)](https://github.com/dnnslmbrt "dnnslmbrt (1 commits)")

---

Tags

phplaravelcmschuckcmschuckbe

### Embed Badge

![Health badge](/badges/chuckbe-chuckcms-module-order-form/health.svg)

```
[![Health](https://phpackages.com/badges/chuckbe-chuckcms-module-order-form/health.svg)](https://phpackages.com/packages/chuckbe-chuckcms-module-order-form)
```

###  Alternatives

[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[arbory/arbory

Administration interface for Laravel

4752.8k3](/packages/arbory-arbory)

PHPackages © 2026

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