Problem I have php function that compares two different database table. Any suggestion on improving it. public function comparePartyTableCandidates() { […]

Problem Okay, This is my method: public function edit(Request $request, $ent, $room, $obj) { $input = $request->except([‘_token’]); Enterprise::where(‘bedrijfsnaam’, $ent)->first()->rooms()->where(‘name’, $room)->first()->objects()->where(‘name’, […]

Problem I have t things working with this current setup: Route::get(‘test’, function(){ $finished = AppProgress::select(‘stack_id’)->get(); $unfinished = AppStack::select([‘id as stack_id’])->get(); […]