ahmetbarut/laravel-helper

Laravele attığım ve kabul edilmeyen çekme istekleri

Installs: 66

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

Type:package

pkg:composer/ahmetbarut/laravel-helper

v1.0.0 2022-10-24 10:16 UTC

This package is auto-updated.

Last update: 2025-09-24 16:39:20 UTC


README

For Laravel

if you use laravel framework, you can use this function to dump the variable if the condition is true.

// config/app.php
'providers' => [
    ...
    AhmetBarut\LaravelHelper\LaravelHelperServiceProvider::class,
];
@dd_if(true, $var1, $var2, $var3);

if use only php, you can use this function to dump the variable if the condition is true.

dd_if(true, $var1, $var2, $var3);