Laravelで簡易的なSNSシステムを作成しています。
その中でログインユーザーのフォロー機能を実装している際に詰まりました。
ログインしているユーザーがフォローしている数、フォローされている数をカウントで取得。
その数値を共通レイアウトにしているLayouts/Login.blade.phpで表示させたいです。
ある特定の子ビューでは変数を取得し表示させることはできましたが、他のページにいくとエラーが出てしまいます。
(そのページには変数を渡していないのでエラーが出てしまう事はわかります。)
全てのページに対して処理を書くのは非効率だと考え色々調べたところビューコンポーザーに辿り着き色々試していますが上手く処理が渡せず困っています。
ビューコンポーザーの細かい使い方や使い方の例をアドバイスいただけると幸いです。
##該当ソースコード
###FollowsController
namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\DB; use App\User; use App\Post; use App\Follow; class FollowsController extends Controller { public function show(User $user, Follow $follow) { $login_user = auth()->user(); $is_following = $login_user->isFollowing($login_user->id); $is_followed = $login_user->isFollowed($login_user->id); $follow_count = $follow->getFollowCount($login_user->id); $follower_count = $follow->getFollowerCount($login_user->id); return view('users.show', [ 'is_following' => $is_following, 'is_followed' => $is_followed, 'follow_count' => $follow_count, 'follower_count' => $follower_count ]); } }
###Followモデル
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Follow extends Model { protected $fillable = [ 'following_id', 'followed_id' ]; public function getFollowCount($user_id) { return $this->where('following_id', $user_id)->count(); } public function getFollowerCount($user_id) { return $this->where('followed_id', $user_id)->count(); } }
###Userモデル
<?php namespace App; use Illuminate\Notifications\Notifiable; use Illuminate\Foundation\Auth\User as Authenticatable; class User extends Authenticatable { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'username', 'mail', 'password', ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; public function follow($user_id) { return $this->follows()->attach($user_id); } public function unfollow($user_id) { return $this->follows()->detach($user_id); } public function isFollowing($user_id) { return (boolean) $this->follows()->where('followed_id', $user_id)->exists(); } public function isFollowed($user_id) { return (boolean) $this->followers()->where('following_id', $user_id)->exists(); } }
↓下記使用したいファイル
###AppServiceProvider
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; use Illuminate\Support\Facades\View; use App\User; use App\Follow; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { // View::composer( '*', 'App\Http\Composers\ViewComposer'); } /** * Register any application services. * * @return void */ public function register() { // } }
###ViewComposer
<?php namespace App\Http\Composers; use Illuminate\View\View; use App\User; use App\Follow; use Auth; class ViewComposer { /** * Bootstrap the application services. *@param View $view * @return void */ public function compose($view) { // } }
FollowsControllerの処理で特定のページには変数が渡され正しい数値が取得できています。
ViewComposerの方で同じように処理行い数値の表示をさせたいです。
アドバイスお願いします!
回答1件
あなたの回答
tips
プレビュー