samedi 20 février 2016

yajra DataTable with join not working in laravel 5?

relation of customer with job

 public function customer() {
        return $this->belongsTo('App\Customer','customerid');
    }

  public function jobs(){
        return $this->hasMany('App\Job','customerid');
    }

in controller

protected  function getJobs(){
                        $jobs = Job::Join('customer','jobs.customerid','=','customer.id')
            ->select(array('jobs.id','customer.firstname','customer.lastname','jobs.jobstatus','jobs.trialdate','jobs.deliverydate'));       
        return Datatables::of($jobs)
            ->addColumn('action', '<a class="btn btn-default btn-xs" data-toggle="tooltip" data-placement="top" title="Edit" href="{{ URL::to(\'updatejob/\'.$id) }}"><i class="fa fa-pencil"></i></a>')
            ->make();
                        
    }
it throw following error
SQLSTATE[42S22]: Column not found: 1054 Unknown column '0' in 'order clause' (SQL: select `jobs`.`id`, `customer`.`firstname`, `customer`.`lastname`, `jobs`.`jobstatus`, `jobs`.`trialdate`, `jobs`.`deliverydate` from `jobs` inner join `customer` on `jobs`.`customerid` = `customer`.`id` order by `0` asc limit 10 offset 0)

i'm stuck in this issue from 2 day please help me to get out from this



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire