Laravel Twitter
Twitter API for Laravel 5.5+, 6.x, 7.x & 8.x https://github.com/atymic/twitter
tips and tricks about PHP, Symfony, Laravel, javascript
Twitter API for Laravel 5.5+, 6.x, 7.x & 8.x https://github.com/atymic/twitter
There’s a hidden API endpoint you can use to validate if a provided Gmail address exists or is made up. <?php namespace App\Rules; use Illuminate\Contracts\Validation\Rule; class ValidGmailAddress implements Rule {…Continue Reading …
After upgrading to MacOS Big Sur, my virtual boxes stopped to work. At first with a driver related to drivers. To fix this, you have to download the latest virtualbox…Continue Reading …
commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can…Continue Reading …
This pptxjs library allows to generate pptx. https://gitbrent.github.io/PptxGenJS/ I’ve used this module in a php application (running the nodejs with exec function) : if you want to generate a pptx…Continue Reading …
DB::enableQueryLog();
$my_model = DB::table(‘model’)->get();
var_dump(DB::getQueryLog());