ahmetbarut / laravel-helper
Laravele attığım ve kabul edilmeyen çekme istekleri
Installs: 53
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires (Dev)
- symfony/var-dumper: ^4.4|^5.0 || ^6.0
This package is auto-updated.
Last update: 2025-02-24 15:19:21 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);