itsmill3rtime/simple-helpers

There is no license information available for the latest version (1.7) of this package.

Helper functions to ease development and increase readability

1.7 2018-06-26 02:52 UTC

This package is auto-updated.

Last update: 2025-02-19 12:41:23 UTC


README

Helper functions for laravel to ease development and increase readability

Installation

Simple Helpers requires Laravel >= 5.1

Install Package:

$ composer require itsmill3rtime/simple-helpers

Add provider to Laravel config.php

'providers' => [
 ...
    \Itsmill3rtime\Helpers\SimpleHelpersProvider::class,
]

Some functions include a final parameter called $loose. This if set to true will use the == operator instead of ===

Condition Helpers

Eloquent Helpers

Environment Helpers