本文整理汇总了PHP中app\Item::latest方法的典型用法代码示例。如果您正苦于以下问题:PHP Item::latest方法的具体用法?PHP Item::latest怎么用?PHP Item::latest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Item
的用法示例。
在下文中一共展示了Item::latest方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
/**
*
* Index - if the user is logged in, allow them to proceed.
* Otherwise, redirect to the log in page.
*/
public function index()
{
if (Auth::check()) {
$items = Item::latest()->get();
return view('items.index', compact('items'));
} else {
return Redirect::to('auth/login');
}
}
示例2: search
public function search(Request $request)
{
$key = $request->input('key');
if ($key == '') {
return redirect('items');
}
$items = Item::latest('created_at')->where('item_number', 'like', '%' . $key . '%')->orWhere('item_name', 'like', '%' . $key . '%')->paginate(10);
return view('items.index', compact('items'));
}
示例3: listByItems
public function listByItems()
{
$items = Item::latest('created_at')->paginate(10);
return view('inventory.inventoryavailability.index_byitems', compact('items'));
}
示例4: index
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
//
$items = Item::latest('created_at')->with('itemclass')->paginate(10);
return view('boms.index', compact('items'));
}