本文整理汇总了PHP中app\Project::toArray方法的典型用法代码示例。如果您正苦于以下问题:PHP Project::toArray方法的具体用法?PHP Project::toArray怎么用?PHP Project::toArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Project
的用法示例。
在下文中一共展示了Project::toArray方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: postStar
/**
* User stars/un-stars a project (POST)
*
* @param Project $project
* @return array JSON response
*/
public function postStar(Project $project)
{
$response = array();
$response['project'] = $project->toArray();
if (!in_array(Auth::user()->id, $project->users()->lists('id')->toArray())) {
Auth::user()->projects()->attach($project->id);
$response['message'] = "成功收藏 <span>" . $project->title . "</span>";
} else {
Auth::user()->projects()->detach($project->id);
$response['message'] = "已取消收藏 <span>" . $project->title . "</span>";
}
return $response;
}
示例2: destroy
/**
* Remove the specified resource from storage.
*
* @param Project $project
* @internal param int $id
* @return Response
*/
public function destroy(Project $project)
{
if ($project->todos) {
foreach ($project->todos as $todos) {
if (!$todos->completed) {
Flash::error('This project has incomplete todos. Mark them as completed or remove them.');
return redirect()->route('projects.todos.index', [$project->id]);
}
}
}
$project_array = $project->toArray();
$emails = $project->subscribers()->lists('email');
Mail::send('projects.emails.delete', ['name' => $project->name, 'user' => $project->user->name], function ($message) use($emails, $project_array) {
$message->from('info@laireight.com');
$message->to($emails)->subject("USC Todo App - The '{$project_array['name']}' project has been removed!");
});
$project->delete();
Flash::success('The project has been deleted!');
return redirect()->route('projects.index');
}