Logan Bailey
Logan Bailey
This is done by design and is documented in the [Doctrine doc's](http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/basic-mapping.html#doctrine-mapping-types), you'll need to scroll down but it says: > DateTime and Object types are compared by reference, not...
To merge the two templates into one template you'd need to pass an instance of StdClass object for the item table into the Write view. You'd also need to show/hide...
Can you post the data from that column in the database if you can access it?
@therourke I know @MitchellMcKenna wants to rewrite the LifePress and change it to a Laravel application. I imagine when that happens, he'll add a mobile view. However, I don't know...
For pagination pages the ideal solution for `example.com/items/site/twitter.com/page/5` would be to have ``` HTML ``` Noindex should prevent the paginated pages themselves from appear on search engines, but the linked...
This is an issue for environments where you may not have a database, maybe a testing environment. You're build script would run `composer install` and that would end in an...
There's no way to crop from the center of an image, but if you're creating a thumbnail and wish to "crop" from the center use the command, `legacy_thumbnail`. #betterLateThanNever
I think 400 responses make sense when expected parameters are incorrect, e.g. `?w=johnny`. I'm hesitant to 400 with unsupported values: `w=100&h=100&tracker=15123`. There are too many options for what applications may...
Apologies for digging up and old issue here. Having skimmed the comments in the #170, specifically regarding CDN caching there are a couple issues with the existing signature mechanism I'd...
You can change the default quality to `85` by adding `q` to your defaults in `ServerFactory::create()` e.g.: ```php $server = ServerFactory::create([ 'response' => new LaravelResponseFactory(app('request')), 'source' => $filesystem->getDriver(), 'cache' =>...