/**
  * Display a listing of the resource.
  * GET /customers
  *
  * @return Response
  */
 public function index()
 {
     return View::make('productions.index')->with('job_orders', DajobOrder::all())->with('quotations', Quotation::all());
 }