sosupp/slimer-billing

Simple invoice/billing with billable items and all that is necessary for schools, SMEs, etc.

Maintainers

Package info

github.com/sosupp/slimer-billing

pkg:composer/sosupp/slimer-billing

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.0.1 2026-06-27 06:17 UTC

This package is auto-updated.

Last update: 2026-06-27 06:20:56 UTC


README

Installation

Using It in Your App

Querying Polymorphic Billings

  1. Get all billings for a specific entity type $studentBillings = Billing::billableType(Student::class)->get();

  2. Get all overdue billings $overdueBillings = Billing::overdue()->get();

  3. Get billings for a specific student $student = Student::find(1); $studentBillings = $student->billings;

  4. Get all billings with their items and payments $billings = Billing::with(['items', 'payments', 'billable'])->get();

  5. Get billings by date range and status $billings = Billing::dateRange('2026-01-01', '2026-12-31') ->status('paid') ->get();