Jeremy Bruns

Results 10 comments of Jeremy Bruns

https://github.com/reliese/laravel this one is more advanced anyways, it also generates the relations!

this repo seems to not be to active switched to a different cms boilerplate

Hey guys, I have a somewhat similar problem. The extends function just does not work, I tried every possible way to extend my base template StackOverflow: http://stackoverflow.com/questions/42090602/laravel-5-3-rcrowe-twigbridge-0-9-4 > Laravel 5.3.*...

I'm actually looking for a good lumen package for a project at work and will try this one (https://github.com/swisnl/json-api-client) at first, if I find some time I'll take a look...

Original: ``` /** * Display a list of setting. * * @return Response */ public function index(SettingRequest $request) { return $this->response->setMetaTitle(trans('settings::setting.names')) ->view('settings::index') ->data(compact('settings')) ->output(); } ``` Fix: ``` /** *...

I've nailed down the problem to the createFactory method, will investigate further. Here is the complete stacktrace: ` Could not analyze class []. array:20 [ 0 => array:6 [ "file"...

will become mostly obsolete I guess :( https://laravel-news.com/package-auto-discovery https://github.com/barryvdh/laravel-debugbar/pull/643

fixed with: `$this->app->instance('path.database', app()->basePath() . DIRECTORY_SEPARATOR . 'config'); ` Provided you have a database.php in your config folder. Altho there is an issue, Factories are being created in the model...