tonioriol / larabelt by tr0n

A set of helper methods for laravel
307
1
2
Package Data
Maintainer Username: tr0n
Maintainer Contact: tonioriol@gmail.com (Toni Oriol)
Package Create Date: 2016-08-25
Package Last Update: 2016-10-13
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:21:51
Package Statistics
Total Downloads: 307
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Larabelt

Larabelt is a toolbelt for Laravel, a set of helper classes that I usually need for my day to day development.

I publish this hoping that someone will find it useful too. I you encounter any bug feel free to open an issue.

This package is intended to work with laravel, so some methods will not work without it.

Some classes of the package extend existing Laravel Facades such as File and Log. Some others extend helper classes that doesn't have a facade such as Str or Arr.

Install

  1. composer require t20n/larabelt
  2. For the classes that extend facades replace this from the aliases array in config/app.php of your laravel install:
    • 'DB' => T20n\Larabelt\DB::class,
    • 'File' => T20n\Larabelt\File::class,
    • 'Log' => T20n\Larabelt\Log::class,
    • 'URL' => T20n\Larabelt\URL::class,

Usage

@todo