First, you need a model. You could generate this by using php artisan. php artisan make:model jobs (I assume you have done this already) This will create a model in /your_project/app/Job.php
Now you can use Eloquent (here in a route, to see some output):
Route::get('/jobs', function () {
$jobs = \App\Job::groupBy('job_id')->get();
return $jobs->lists('job_id');
});
will return something like: [0,1,3,4] instead of [0, 1, 1, 1, 3, 4, 4, 4].
How about:
Eloquent:
php artisan make:model jobs
(I assume you have done this already) This will create a model in /your_project/app/Job.phpNow you can use Eloquent (here in a route, to see some output):
Route::get('/jobs', function () { $jobs = \App\Job::groupBy('job_id')->get(); return $jobs->lists('job_id'); });
will return something like:
[0,1,3,4]
instead of[0, 1, 1, 1, 3, 4, 4, 4]
.