本文整理汇总了PHP中app\Location::get方法的典型用法代码示例。如果您正苦于以下问题:PHP Location::get方法的具体用法?PHP Location::get怎么用?PHP Location::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Location
的用法示例。
在下文中一共展示了Location::get方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: billing
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);
}
}
示例2: edit
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');
}
示例3: index
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
return Response::json(Location::get());
}
示例4: run
/**
* 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)]);
}
}