mopo922/laravel-treats

A collection of goodies for Laravel 5.
491,482 107
Install
composer require mopo922/laravel-treats
Latest Version:v2.0.4
PHP:>=7.0
License:MIT
Last Updated:Mar 28, 2022
Links: GitHub  ·  Packagist
Maintainer: mopo922

LaravelTreats

A collection of goodies for Laravel 5.

:exclamation: This project is no longer maintained. :exclamation:

Installation

Add this to your project's composer.json file:

    // ...
    "require": {
        // ...
        "mopo922/laravel-treats": "^1.0",
        // ...
    },
    // ...

Then run composer update. That's it!

Components

Service Provider

The LaravelTreatsServiceProvider is not required for all LaravelTreats features, but does provide an interface for some benefits like the ready-made view layout.

Simply add the LaravelTreatsServiceProvider to the providers array in config/app.php:

'providers' => [
    // Other Service Providers

    LaravelTreats\LaravelTreatsServiceProvider::class,
],

If you plan to take advantage of the default view layout, publish the necessary files to your app and resources directories by running the following command from your project's root directory:

php artisan vendor:publish

Related Packages

songshenzong/api

A RESTful API package for the Laravel

5,327 4
jedrzej/sortable

Sortable trait for Laravel's Eloquent models - sort your models using request pa...

282,588 52
jimbolino/laravel-model-builder

builds eloquent models based on the tables and relations found in your mysql dat...

11,510 30
jlapp/swaggervel

A great way to integrate Swagger into Laravel

956,211 484
jedrzej/searchable

Searchable trait for Laravel's Eloquent models - filter your models using reques...

273,037 125