當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Photo::all方法代碼示例

本文整理匯總了PHP中app\Photo::all方法的典型用法代碼示例。如果您正苦於以下問題:PHP Photo::all方法的具體用法?PHP Photo::all怎麽用?PHP Photo::all使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\Photo的用法示例。


在下文中一共展示了Photo::all方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: viewReadAll

 public function viewReadAll()
 {
     // Set logged in user to a variable.
     $authUser = Auth::user();
     // Find user's likes in database.
     $likes = Like::where('user_id', '=', $authUser->id)->latest('id')->get();
     // Find all photos in the database.
     $photos = Photo::all();
     // Return view with variables.
     return view('likes.viewReadAll')->with('likes', $likes)->with('authUser', $authUser)->with('photos', $photos);
 }
開發者ID:JCStraw3,項目名稱:photos,代碼行數:11,代碼來源:LikeController.php

示例2: viewReadAll

 public function viewReadAll()
 {
     // Set logged in user to a variable.
     $authUser = Auth::user();
     // Find user's comments in database.
     $comments = Comment::where('user_id', '=', $authUser->id)->latest('id')->get();
     // Find comment's user in database.
     foreach ($comments as $comment) {
         $id = $comment->user_id;
         $user = User::findOrFail($id);
     }
     // Find all photos in the database.
     $photos = Photo::all();
     // Return view with variables.
     return view('comments.viewReadAll')->with('comments', $comments)->with('authUser', $authUser)->with('user', $user)->with('photos', $photos);
 }
開發者ID:JCStraw3,項目名稱:photos,代碼行數:16,代碼來源:CommentController.php

示例3: store

 /**
  * Store a newly created resource in storage.
  *
  * @param  \Illuminate\Http\Request $request
  * @return \Illuminate\Http\Response
  */
 public function store(Request $request)
 {
     $duplicates = $this->multiple_upload($request);
     $photos = Photo::all();
     return view('photo.index', ['photos' => $photos, 'duplicates' => $duplicates]);
 }
開發者ID:AlecHansen,項目名稱:imageshare,代碼行數:12,代碼來源:PhotoController.php

示例4: xml

 public function xml()
 {
     $photos = Photo::all();
     return view('xml', compact('photos'));
 }
開發者ID:mstnorris,項目名稱:gallery.michaelnorris.co.uk,代碼行數:5,代碼來源:PhotoController.php

示例5: index

 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $photos = Photo::all();
     return view('photo.index', ['photos' => $photos]);
 }
開發者ID:ynniswitrin,項目名稱:8A-Fotos,代碼行數:10,代碼來源:PhotoController.php

示例6: index

 public function index()
 {
     $ats = Photo::all();
     return view('index-1', compact('ats'));
 }
開發者ID:LinaSakarne,項目名稱:teikasmuzikanti,代碼行數:5,代碼來源:PhotoController.php

示例7: testDelete

 public function testDelete()
 {
     // test delete()
     $phone = Phone::find(1);
     $this->assertNotNull($phone);
     $phone = Phone::find(1);
     $phone->delete();
     $phone = Phone::find(1);
     $this->assertNull($phone);
     // test delete() with query builder
     // Post is soft delete model
     $posts = Post::where('id', '<', 3)->get();
     $this->assertFalse($posts->isEmpty());
     Post::where('id', '<', 3)->delete();
     $posts = Post::where('id', '<', 3)->get();
     $this->assertTrue($posts->isEmpty());
     // test destroy()
     $phone = Phone::find(2);
     $this->assertNotNull($phone);
     Phone::destroy(2);
     $phone = Phone::find(2);
     $this->assertNull($phone);
     $photos = Photo::all();
     $this->assertFalse($photos->isEmpty());
     Photo::destroy([1, 2, 3]);
     $photos = Photo::all();
     $this->assertTrue($photos->isEmpty());
     // test destopy with non-existing primary key
     // expect no exception
     Photo::destroy([1, 2, 3]);
     $photos = Photo::all();
     $this->assertTrue($photos->isEmpty());
 }
開發者ID:richarddlu,項目名稱:test_eloquent,代碼行數:33,代碼來源:EloquentTest.php

示例8: index

 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $photos = Photo::all();
     return view('pages.index-photo', compact('photos'));
 }
開發者ID:botlax,項目名稱:talalcontracting,代碼行數:10,代碼來源:PhotoController.php


注:本文中的app\Photo::all方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。