As we all know laravel eloquent has changed the way we deal database ! so here are the lis of 10 packages to easily deal with eloquent in laravel

#1 DB Blade Compiler

Render Blade templates from Eloquent Model Fields

This package generates and returns a compiled view from a blade-syntax field in your Eloquent model

Installation (Laravel 5.x)

Require this package in your composer.json and run composer update (or run composer require flynsarmy/db-blade-compiler:2.* directly):

"flynsarmy/db-blade-compiler": "2.*"

After updating composer, add the ServiceProvider to the providers array in app/config/app.php

'FlynsarmyDbBladeCompilerDbBladeCompilerServiceProvider',

You have to also publish the config-file

php artisan vendor:publish

Links

GitHubPackagist