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


PHP Post::fill方法代碼示例

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


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

示例1: update

 /**
  * Update the specified resource in storage.
  *
  * @param  PostFormRequest $request
  * @param  Post $post
  * @return Response
  */
 public function update(PostFormRequest $request, $post)
 {
     $post->fill($request->all());
     $post->save();
     if ($tags = $request->input('tags')) {
         $post->retag($request->input('tags'));
     }
     return $post->load('tagged');
 }
開發者ID:xEdelweiss,項目名稱:my-perfect-back-end,代碼行數:16,代碼來源:PostsController.php

示例2: writePost

 public function writePost()
 {
     $postValue = \Input::get('Post');
     $post = new Post();
     $post->fill($postValue);
     $post->setAttribute('user_id', \Auth::user()->id);
     $post->save();
     return redirect(route('home'));
 }
開發者ID:juliardi,項目名稱:jualjasa,代碼行數:9,代碼來源:HomeController.php

示例3: store

 /**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store(Request $request)
 {
     $model = new Post();
     $data = $request->all();
     $rules = $this->rules();
     $v = Validator::make($data, $rules);
     if ($v->fails()) {
         $output = ['error' => true, 'message' => 'Input invalidate!', 'errors' => $v->errors()];
     } else {
         $model->fill($data);
         if ($model->save()) {
             $output = ['error' => false, 'message' => 'Created Success!', 'data' => $model->toArray()];
         } else {
             $output = ['error' => true, 'message' => 'Save Failed!'];
         }
     }
     # use queues to send email
     $message = "A new post have been created";
     $job = new SendEmail($message);
     $this->dispatch($job);
     return response()->json($output, 200);
 }
開發者ID:liubo2055,項目名稱:test-lazada,代碼行數:27,代碼來源:PostController.php

示例4: update

 /**
  * Updates Post into database
  *
  * @param Post $post
  * @param array $input
  *
  * @return Post
  */
 public function update($post, $input)
 {
     $post->fill($input);
     $post->save();
     return $post;
 }
開發者ID:jclyons52,項目名稱:mycourse-rocks,代碼行數:14,代碼來源:PostRepository.php


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