public static function index()
 {
     $customers = customer::all();
     View::make('customer/index.html', array('customers' => $customers));
 }
 public static function customers()
 {
     $customers = customer::all();
     $receivers = receiver::all();
     View::make('/waybill/new.html', array('customers' => $customers, 'receivers' => $receivers));
 }