<?php
namespace App\Komma\CareersJobs;
use App\Komma\CareersJobs\Models\CareersJob;
use Illuminate\Contracts\View\View;
class CareersJobComposer
{
/**
* Bind data to the view.
*
* @param View $view
* @return View
*/
public function compose(View $view)
{
return $view->with(['careersJobs' => CareersJob::where('active', 1)->where('careers_id', '!=', '')->orderBy('lft')->get()]);
}
}