uteq/laravel-query-builder-macros 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

uteq/laravel-query-builder-macros

最新稳定版本:1.0.8

Composer 安装命令:

composer require uteq/laravel-query-builder-macros

包简介

A set of common Laravel Uteq helpers and macros

README 文档

README

Latest Version on Packagist Run tests Check & fix styling Total Downloads

Adds useful functionality to the Laravel Query Builder Illuminate\Database\Query\Builder.

Installation

composer require uteq/laravel-query-builder-macros

Or add the Uteq Laravel Support package

composer require uteq/laravel-support

rawQuery

$rawQuery = Account::query()
    ->where('email', 'john')
    ->getQuery() // You need to do this to get the rawQuery
    ->rawQuery();
// return `select * from "account" where "email" = 'john'` 

ddQuery

Account::query()
    ->where('email', 'john')
    ->ddQuery();
// dd() of `select * from "account" where "email" = 'john'`

dumpQuery

Account::query()
    ->where('email', 'john')
    ->dumpQuery();
// dump() of `select * from "account" where "email" = 'john'`
//  the execution of the script will continue

rayQuery

Account::query()
    ->where('email', 'john')
    ->rayQuery();
// ray() of `select * from "account" where "email" = 'john'`
//  the execution of the script will continue

Inspiration by

Building this package I got inspired by the following:

Credits

Testing

$ composer test

About Uteq

We are a web development agency based in the Netherlands. We design and build web applications for our clients. We are specialized in Laravel with Livewire.

License

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

统计信息

  • 总下载量: 1.53k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 20
  • 点击次数: 7
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 20
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-03-25