All Projects → browner12 → Helpers

browner12 / Helpers

Licence: mit
Helper Package

Labels

Projects that are alternatives of or similar to Helpers

Laravel Database Encryption
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Stars: ✭ 238 (-4.03%)
Mutual labels:  laravel
Laravel Zero
A PHP framework for console artisans
Stars: ✭ 2,821 (+1037.5%)
Mutual labels:  laravel
Redis Manager
Integrates your Laravel application with a redis manager
Stars: ✭ 245 (-1.21%)
Mutual labels:  laravel
Laravel Resource Links
Add links to Laravel API resources
Stars: ✭ 240 (-3.23%)
Mutual labels:  laravel
Rutorika Sortable
Adds sortable behavior to Laravel Eloquent models
Stars: ✭ 241 (-2.82%)
Mutual labels:  laravel
Sitemap
Google sitemap builder for Laravel
Stars: ✭ 243 (-2.02%)
Mutual labels:  laravel
Gistlog
GistLog - simple, easy blogging based on GitHub gists
Stars: ✭ 237 (-4.44%)
Mutual labels:  laravel
Laravel Localization
Easy localization for Laravel
Stars: ✭ 2,816 (+1035.48%)
Mutual labels:  laravel
Algoliasearch Laravel
[Deprecated] We now recommend using Laravel Scout, see =>
Stars: ✭ 242 (-2.42%)
Mutual labels:  laravel
Scrumwala
Scrumwala: Your very own Scrum, Agile project management web app - built with Laravel
Stars: ✭ 244 (-1.61%)
Mutual labels:  laravel
Laravel Admin Starter
A Laravel Admin Starter project with Page Builder, Roles, Impersonation, Analytics, Blog, News, Banners, FAQ, Testimonials and more
Stars: ✭ 240 (-3.23%)
Mutual labels:  laravel
Laravel Multilingual Routes
A package to handle multilingual routes in your Laravel application.
Stars: ✭ 241 (-2.82%)
Mutual labels:  laravel
Api Generator
PHP-code generator for Laravel framework, with complete support of JSON-API data format
Stars: ✭ 244 (-1.61%)
Mutual labels:  laravel
Laracrud
Laravel Code Generator based on MySQL Database
Stars: ✭ 238 (-4.03%)
Mutual labels:  laravel
Bouncer
Eloquent roles and abilities.
Stars: ✭ 2,763 (+1014.11%)
Mutual labels:  laravel
Laravel View Components
A better way to connect data with view rendering in Laravel
Stars: ✭ 238 (-4.03%)
Mutual labels:  laravel
Canvas
A Laravel publishing platform
Stars: ✭ 2,838 (+1044.35%)
Mutual labels:  laravel
Laravel Aws Eb
Ready-to-deploy configuration to run Laravel on AWS Elastic Beanstalk.
Stars: ✭ 247 (-0.4%)
Mutual labels:  laravel
Laravel Gitscrum
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.
Stars: ✭ 2,686 (+983.06%)
Mutual labels:  laravel
Daza Backend
[DEPRECATED]
Stars: ✭ 244 (-1.61%)
Mutual labels:  laravel

Helpers

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

This is a helpers package that provides some built in helpers, and also provides an Artisan generator to quickly create your own custom helpers.

Install

Via Composer

$ composer require browner12/helpers

Setup

Add the service provider to the providers array in config/app.php.

'providers' => [
    browner12\helpers\HelperServiceProvider::class,
];

If you are using Laravel's automatic package discovery, you can skip this step.

Publishing

You can publish everything at once

php artisan vendor:publish --provider="browner12\helpers\HelperServiceProvider"

or you can publish groups individually.

php artisan vendor:publish --provider="browner12\helpers\HelperServiceProvider" --tag="config"

Usage

This package comes with some built in helpers that you can choose to use or not. By default all of these helpers are inactive for your application. To adjust which helpers are active and which are inactive, open config/helpers.php and find the package_helpers option. Add any helpers you wish to activate to this key. Check the source code to see what functions are included in each helper and what each does.

You can also create your own custom helpers for inclusion in your application. An Artisan generator helps you quickly make new helpers for your application.

php artisan make:helper MyHelper

Your custom helper will be placed in app/Helpers, unless you override the default directory in your configuration.

By default, the service provider uses the glob function to automatically require any PHP files in the 'Helpers' directory. If you prefer a mapper based approach, you may edit the custom_helpers in the configuration file, and include the file name of any helpers in your custom directory you wish to activate. Within the new helper, define your own custom functions that will be available throughout your application.

if (!function_exists('hello')) {

    /**
     * say hello
     *
     * @param string $name
     * @return string
     */
    function hello($name)
    {
        return 'Hello ' . $name . '!';
    }
}

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].