Search by

A simple Laravel utility package that provides reusable helper methods.

Package info

github.com/ahmedfawzy167/utils

pkg:composer/ahmedfawzy167/utils

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-09-19 09:36 UTC

This package is auto-updated.

Last update: 2026-09-19 09:41:37 UTC


README

A simple Laravel Utility Package that provides reusable helper methods.

Requirements

  • PHP 8.5
  • Laravel 13

Installation

Install the Package using Composer:

composer require ahmedfawzy167/utils

Usage

Uppercase

use AhmedFawzy167\Utils\Utils;

$result = Utils::uppercase('hello laravel');

echo $result;

Output:

HELLO LARAVEL

Slug

use AhmedFawzy167\Utils\Utils;

$result = Utils::slug('Hello Laravel Package');

echo $result;

Output:

hello-laravel-package

Available Methods

Method Description
uppercase() Converts text to uppercase
slug() Converts text into a simple slug

Testing

Run:

composer test

License

The MIT License (MIT).