Esempio n. 1
0
 public function billing()
 {
     $cart = Cart::content();
     $count = Cart::count();
     $locations = Location::get();
     // get shipping
     if ($count == 1) {
         $data['shipping'] = 5;
     } else {
         $data['shipping'] = 2 * ($count - 1) + 5;
     }
     if ($count < 1) {
         return redirect('cart/view')->with('message', 'cart is empty');
     } else {
         return view('cart.billing', compact('cart', 'locations'), $data);
     }
 }
 public function edit($booking_id)
 {
     $booking = Booking::with('comment.comment_type', 'comment.role.user', 'comment.role.role_type', 'change.change_type', 'change.user', 'car_type', 'role.user', 'role.role_type', 'income.income_type', 'outcome.outcome_type', 'route_point.location', 'route_point.sub_location', 'route_point.address')->with(array('route_point' => function ($query) {
         $query->orderBy('order', 'ASC');
     }))->findOrFail($booking_id);
     $car_types = Car_type::get();
     $role_types = Role_type::get();
     $income_types = Income_type::get();
     $outcome_types = Outcome_type::get();
     $locations = Location::get();
     $sub_locations = Sub_location::get();
     $addresses = Address::get();
     JavaScript::put(['addresses' => $addresses, 'booking' => $booking, 'car_types' => $car_types, 'income_types' => $income_types, 'locations' => $locations, 'outcome_types' => $outcome_types, 'role_types' => $role_types, 'sub_locations' => $sub_locations, 'csrf_token' => csrf_token()]);
     return view('booking.edit');
 }
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return Response::json(Location::get());
 }
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     $faker = Faker::create();
     $locations = Location::get()->lists('id')->all();
     foreach (range(1, 10) as $index) {
         DB::table('stories')->insert(['title' => $faker->city, 'story' => $faker->text, 'published' => rand(0, 1), 'location_id' => $faker->randomElement($locations)]);
     }
 }