Zimlix Cloud ERP
Multi-tenant ERP for growing SMEs: sales, inventory, finance and HR modules on one Laravel platform with a Filament back office and per-tenant reporting.
- Laravel
- Filament
- Livewire
- Tailwind CSS
Client
Sentra Distribusi Group
Role
Solution Architect
Year
2023
Duration
6 months
Stack
Links
Sentra’s sales team was juggling a spreadsheet pipeline, a messaging group and a desktop quoting tool. The CRM brought all three into one system with a mobile-friendly interface for reps on the road.
One place for leads, visits and quotations, usable on a phone with poor connectivity and simple enough that the reps would stop using the spreadsheet by choice.
A Laravel application with Filament for managers and a lightweight Alpine.js front-end for reps, offline-tolerant visit check-ins and a quotation engine tied to the price lists in the ERP.
<?php
namespace App\Models;
use App\Support\Enums\PostStatus;
use Illuminate\Database\Eloquent\Builder;
class Post extends Model
{
public function scopePublished(Builder $query): Builder
{
return $query
->where('status', PostStatus::Published)
->where('published_at', '<=', now());
}
}
Spreadsheet retired in the second month; quotation turnaround dropped from two days to two hours.
A schema that mirrors the business language rarely needs a translation layer.
The fastest adoption came from matching the vocabulary the sales team already used, not from adding features.