LaraParse
LaraParse copied to clipboard
LaraParse provides a nice integration for using Parse (parse.com) with Laravel 5+
I set up LaraParse ("hipsterjazzbo/laraparse": "^0.1.6") in a jadjoubran/laravel5-angular-material-starter project but it seems not working as expected during Authentication. 1. I added "LaraParse\ParseServiceProvider" to config/app.php 2. I extended AuthController using...
Hey guys, the Parse SDK has been updated and the module fails because a change they added in their "setServerURL" method in ParseClient class. They are now requiring a second...
Hey guys, just a quick note. There's been a bunch of issues popping up around the more non-basic uses of authentication. I've had to put this project on the back...
If in a method I do: ``` $parseObject = $this->someRepo->find($id); $collection = $this->someRepo->all(); ``` The $collection will only contain a single result which matches the ID of the $parseObject. I...
Need to implement pagination as handling hundreds of ParseObjects is a bit unwieldy. There's a couple of ways this can be done. One way could be to just get the...
It's a minor update but do people think that methods such as all() for Parse Repositories should return an instance of use Illuminate\Support\Collection? It has some useful helper methods, though...
We should probably write some tests for some of this stuff...
When trying to run a test for a logged in user, if $this->be seems to throw a BadMethodCallException. Would be good to get some details on how to go about...