Posts

Feature Flags In Laravel
June 28th, 2022
## Overview
**Library is [https://github.com/friendsofcat/laravel-feature-flag/](https://github.com/friendsofcat/laravel-feature-flag/)**
**Listen [here](http://www.readorlisten.com/10)**
**Watc...

Loading "mixins" and other plugins whille loading Inertia
June 21st, 2022
Sometimes I need to add `methods` or more during the booting of Inertia. The main file for Laravel is `resources/js/app.js` and the `resources/js/bootstrap.js`.
In this case I wanted to add the La...

Laravel Homestead and Beanstalkd Console
June 17th, 2022
I am doing some queue work and wanted beanstalkd console installed so I can see the status of the queue

Laravel Homestead and MailCatcher
June 17th, 2022
Using MailCatcher http://mailcatcher.me/ I can see the emails sent by the website.
First checkout https://github.com/fideloper/Vaprobash/pull/348 to get your box ready
All I did was
## Log into ...

Laravel Sentry and UUID
June 17th, 2022
## Update October 10 10:07
Have hit a few issues with this model but still working okay.
To start this trait does some of the work to manage incoming POST data.
~~~

Many to Many Polymorphic Relations from Laravel to Angular and back
June 17th, 2022
This will cover having a polymorphic relationship in Laravel, showing it on a form in Angular and saving it back to Laravel. Overall it is well documented [here](http://laravel.com/docs/eloquent#ma...

Saucelabs PHP Client
June 17th, 2022
It is built off of the php-github-api client seen [here](https://github.com/KnpLabs/php-github-api) by KnpLabs . They made a really nice client that uses Guzzle and an AbstractionAPI to make it eas...

Using VCR for PHP API Testing
June 17th, 2022
Testing that your code works against an API can take up lots of un-needed time. With this [php-vcr](https://github.com/php-vcr/php-vcr) library you can do ONE real request that saves a fixture file...

Quick way to traverse a nested php arrray
June 17th, 2022
The [RecursiveIteratorIterator](http://php.net/manual/en/class.recursiveiteratoriterator.php) makes it super easy to traverse a nested array.
Here is an example though the docs are pretty clear th...

Polymorphic relationship Laravel
June 17th, 2022
This example will show a typical "Attachment" need. The Laravel docs really do cover alot as seen [here](http://laravel.com/docs/eloquent#polymorphic-relations) especially **"Polymorphic Relation T...