PHPackages                             nurmuhammet/laravel-helpers - 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. nurmuhammet/laravel-helpers

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

nurmuhammet/laravel-helpers
===========================

Laravel Helpers that make life a better place to live by saving time, energy &amp; nerves

4.0.0(3y ago)029MITPHPPHP ^8.1

Since Feb 17Pushed 2y ago1 watchersCompare

[ Source](https://github.com/nurmuhammet-ali/laravel-helpers)[ Packagist](https://packagist.org/packages/nurmuhammet/laravel-helpers)[ RSS](/packages/nurmuhammet-laravel-helpers/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (2)Versions (7)Used By (0)

Hello, laravel devs.
====================

[](#hello-laravel-devs)

#### This package just contains helpers to make development enjoyable, easy and of course to make life a better place to live

[](#this-package-just-contains-helpers-to-make-development-enjoyable-easy-and-of-course-to-make-life-a-better-place-to-live)

Helper functions
----------------

[](#helper-functions)

```
# Generate random hex color
randomHex(): string
# Example:
randomHex() // #FDA01E

# Round number
round_up(int|float $number, int $precision = 2): float
# Example:
round_up(2) # 2.0
round_up(2.3) # 2.3
round_up(2.33) # 2.4
round_up(2.335) # 2.4
round_up(2.335, 2) # 2.4
round_up(2.335, 4) # 2.335
round_up(2.335, 3) # 2.34

# Return current route name
currentRoute(): ?string
# Example:
currentRoute() # 'web.users.profile'

# Checks is current route name matches with argument(s)
currentRouteIs(string|array $name): bool
# Example:
currentRouteIs('web.users.profile') # true
currentRouteIs(['web.users.profile'. 'web.users.profile.edit']) # true

# Log all database queries
logDB(): void
# Example:
logDB() # main .log file should log all db queries, run this function inside AppServiceProvider
```

Helper Macros
-------------

[](#helper-macros)

```
# Makes json responses more clean, pragmatic
Response::rest(mixed $data = [], int $status_code = 200, string $message = 'success')
# Example:
response()->rest(Post::all())
response()->rest([], 201)
response()->rest([], 201, 'created resource')

# Makes json paginated responses more clean, pragmatic
Response::rest_paginate(mixed $data, int $status_code = 200, string $message = 'success')
# Example:
response()->rest_paginate(Post::paginate(20))

# Provides ordering by translations for spatie translatable, supported databases: ['postgres']
Moodel::orderByTranslation($field, $order = 'asc', $locale = null): Illuminate\Database\Eloquent\Builder
# Example:
Post::orderByTranslation()->get()

# Get table name statically for model
Model::tableName(): string
# Example
Product::tableName() // 'products'

# Get table coloumns for model, caches the result for 5 minutes by default
Model::getColumns(): array
# Example
Post::getColumns() # ['id', 'name', 'slug', ...]
Post::getColumns(cache: false)
Post::getColumns(cacheSeconds: 60)
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~11 days

Total

6

Last Release

1125d ago

Major Versions

1.3 → 2.02023-02-18

2.0 → 3.02023-04-13

3.0 → 4.0.02023-04-14

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/22714717?v=4)[nurmuhammet](/maintainers/nurmuhammet)[@Nurmuhammet](https://github.com/Nurmuhammet)

---

Top Contributors

[![nurmuhammet-ali](https://avatars.githubusercontent.com/u/25463082?v=4)](https://github.com/nurmuhammet-ali "nurmuhammet-ali (39 commits)")

### Embed Badge

![Health badge](/badges/nurmuhammet-laravel-helpers/health.svg)

```
[![Health](https://phpackages.com/badges/nurmuhammet-laravel-helpers/health.svg)](https://phpackages.com/packages/nurmuhammet-laravel-helpers)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3274.9M308](/packages/psalm-plugin-laravel)[watson/active

Laravel helper for recognising the current route, controller and action

3253.6M14](/packages/watson-active)[dragon-code/pretty-routes

Pretty Routes for Laravel

10058.7k4](/packages/dragon-code-pretty-routes)[zonneplan/laravel-module-loader

Module loader for Laravel

24118.4k](/packages/zonneplan-laravel-module-loader)[bjuppa/laravel-blog

Add blog functionality to your Laravel project

483.3k2](/packages/bjuppa-laravel-blog)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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