Download the PHP package fikrimi/laravel-helper without Composer
On this page you can find all versions of the php package fikrimi/laravel-helper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-helper
Yet another laravel helper
This is my personal Laravel helper and decided to published it, hopefully
one of them become useful for someone somewhere. You can use it as a whole or
just use your own HelperServiceProvider
and copy paste what you need.
If you think any function you think redundant, stupid or unusable just issue it.
It consists of 5 helper group.
- General
- Form
- URL
- String
- Arbitrary
General
array_keys_exists(array $keys, array $arr)
It validate multiple keys is exists on array. All of the keys should exists or it will return false.
is_assoc(array $arr)
Check if it is an associative array or not.
ddr()
"Debug and Die but Readable", like dd()
but it always convert to array first.
So imagine dumping your model but it always ->toArray()
first so you can read it
like a normal human being and still have the perks of dd()
like collapse and such.
It works on every Arrayble thing (to convert to array) or anything beside it (like dd).
dr()
Like ddr()
above, but didn't die. so you could set up something like this
round_up($number, $per = 500)
and round_down($number, $per = 500)
Ceil $number
to its nearest $per
,
I should've set the $per
to be configurable, maybe next time.
bind_sql(Illuminate\Database\Query\Builder\Builder $builder)
This one is useful for debugging. Its like ->toSql()
but it will
bind all the required parameters. It need builder, so it must be
before the query is executed (like before ->first()
or ->get()
).
But my true intention is actually using it for subquery, imagine you can use the JOIN subquery but still having the advanted of query builder.
In above example we try to use subquery of Books
to try and join with its Authors, and group it again to get their company releases count. Maybe this is not an appropriate example, but you get the idea, to convert a query builder to its SQL-binded form and join it raw with other query builder.
array_insert_before(array $array, $key, array $new)
Insert new element before $key