In your select statement quote each field.
$orders = DB::table('orders') ->select('orders.id', 'orders.created_at', 'customers.full_name') ->join('customers', 'orders.customer_id', '=', 'customers.id') ->paginate(20); return View::make('backend.admin.orders.index')->with('title','Siparişleri Yönet')->with('orders',$orders);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community