laravel-auto maintained by maikealame
Description
Laravel helper to make almost everything for your project
Author
Last update
2023/01/14 00:02
(dev-master)
License
Downloads
4 654
Last update
2017/05/11 23:52
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 22:41
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 21:31
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 21:29
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 20:36
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 16:30
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 04:53
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 04:38
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 02:03
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/11 01:35
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/10 14:58
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/auto-where *
Last update
2017/05/10 06:33
License
Require
- php >=7
- illuminate/support 5.*
- illuminate/database 5.*
- maikealame/autowhere *
Laravel helper package to make automated lists with filters, sorting and paging like no other.
Wiki: https://maikealame.github.io/laravel-auto/
You are free to create your own layout and style, there's no layout html/css included !
This package only grants a very automated query in Eloquent with Blade directives.
You can use it either without Blade directives, like Vue.js and React, but you need to implement manually the calls to backend and layout rendering.


$categories = Topic::from("topics as t")
->select("t.*")
->leftJoin("portals as p", "p.id","=","t.portal_id")
->autoWhere()->autoSort()->autoPaginate();


if (Request::has("filter")) {
if (isset(Request::get("filter")['keyword'])) {
$keyword = Request::get("filter")['keyword'];
Auto::setField("notifications.title", $keyword);
Auto::setField("notifications.description", $keyword);
}
}
$notifications = Notification::select("notifications.*", "notification_users.readed_at")
->groupBy("notifications.id")
->leftJoin("notifications_users", "notifications.id", "=", "notifications_users.notification_id")
->leftJoin("notifications_roles", "notifications.id", "=", "notifications_roles.notification_id")
->leftJoin("notifications_departments", "notifications.id", "=", "notifications_departments.notification_id")
->autoWhere(['or' => ["notifications.title", "notifications.description"]])
->autoSort(["notifications.updated_at", "desc"])->autoPaginate();

$enterprises = Enterprises::from("enterprises as e"))
->select("e.*")
->leftJoin("enterprise_indicators_enterprises as iei","eie.enterprise_id","=","e.id")
->groupBy("e.id")
->autoWhere()->autoSort()->autoPaginate();

See https://maikealame.github.io/laravel-auto/