前提
Laravelにてフリーマーケットサイトを作ろうとしていて、現在ユーザーログイン関連・商品出品関連・プロフィール関連の内ログインしたユーザーのプロフィール画面関連のページを作成しています。
そして、ログインに成功した時のみ自身のプロフィール画面や出品関連のページに飛べるようにしたいのですが、現在そのプロフィール画面にエラーにより飛べない為、プロフィール画面関連で上手く動くか確認したい「プロフィール画面」「プロフィール編集画面」「プロフィール画像の編集画面」のどのページにも飛べない状態となっています。
実現したいこと
上記のプロフィール画面関連に飛べない原因となっているエラーが初めて見る内容なので、その解決法を教えて頂きアクセス出来るようにしたいです。
初めて出たエラーコードなので、解決の為に記載不足のコードなどがあれば編集して追記するのでご指摘ください。
発生している問題・エラーメッセージ
View [auth.login] not found.
該当のソースコード
ルーティング
Web.php(ルーティング) <?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Auth::routes(); Route::get('/', function () { return view('layouts.top'); }); // お気に入り一覧 Route::resource('likes', 'LikesController')->only([ 'index', 'store', 'destroy' ]); Route::resource('items', 'ItemsController'); Route::resource('profile', 'ProfileController')->only([ 'show', 'store', 'destroy' ]); //Route::get('users/{user}/exhibitions', 'UserController'); Route::get('items/create', 'ItemsController@create'); Route::post('items', 'ItemsController@store'); Route::get('/profile/{id}/edit', 'ProfileController@edit')->name('profile.edit'); Route::patch('/profile/{id}', 'ProfileController@update')->name('profile.update'); Route::get('/profile/{id}/edit_image', 'ProfileController@editImage')->name('profile.edit_image'); Route::patch('/profile/{id}/edit_image', 'ProfileController@updateImage')->name('profile.update_image'); Route::resource('profile', 'ProfileController')->only([ 'show', ]);
コントローラー
ProfileController.php(プロフィール関連のコントローラー) <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\User; use App\Http\Requests\ProfileRequest; use App\Http\Requests\ProfileImageRequest; class ProfileController extends Controller { public function __construct() { $this->middleware('auth'); } // プロフィール public function show($id) { $user = User::find($id); return view('profile.show', [ 'title' => 'プロフィール', 'user' => $user ]); } public function edit(int $id) { $user = User::find($id); return view('profile.edit',[ 'title' => 'プロフィール編集', 'user' => $user, ]); } public function update(int $id, UserRequest $request){ $user = User::find($id); $user->update($request->only(['name', 'profile'])); session()->flash('success', 'プロフィールを編集しました!'); return redirect()->route('profile.show', $id); } public function editImage($id) { $user = User::find($id); return view('profile.edit_image', [ 'title' => 'プロフィール画像変更画面', 'user' => $user, ]); } public function updateImage($id, ProfileImageRequest $request, FileUploadService $service) { //画像投稿処理 // $path = ''; // $image = $request->file('image'); // if(isset($image) === true){ // // publicディスク(storage/app/)のphotosディレクトリに保存 // $path = $image->store('photos', 'public'); // } $user = User::find($id); // 変更前の画像の削除 if($user->image !== ''){ // publicディスクから、該当の投稿画像($user->image)を削除 \Storage::disk('public')->delete(\Storage::url($user->image)); } $user->update([ 'image' => $path, //ファイル名を保存 ]); session()->flash('success', '画像を変更しました!'); return redirect()->route('profile.show', $id); } private function saveImage($image){ // 画像投稿処理 $path = ''; if(isset($image) === true ){ // publicディスク(storage/app/)のphotosディレクトリに保存 $path = $image->store('photos', 'public'); } return $path;; // 画像が存在しない場合は空文字 } // いいね追加処理 public function store(Request $request) { // } // いいね削除処理 public function destroy($id) { // } }
モデル
User.php(ユーザーモデル) <?php namespace App; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password', 'profile', 'image' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ]; }
リクエストフォーム
ProfileRequest.php(プロフィールのリクエストフォーム) <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class ProfileRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'profile' => [ 'max:255'], ]; } }
ProfileImageRequest.php(プロフィール画像のリクエストフォーム) <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class ProfileImageRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'image' => [ 'required', 'file', 'image', 'mimes:jpeg,jpg,png', ] ]; } }
ビュー画面
show.blade.php(プロフィール画面のビュー) @extends('layouts.top') @section('title', $title) @section('content') <h1>{{ $title }}</h1> <a href="{{ route('profile.edit', Auth::user() )}}">編集</a> @if($user !== null) <div> 名前 {{ $user->name }} </div> <div> @if($user->image !== '') <img src="{{ asset('storage/' . $user->image) }}"> @else <img src="{{ asset('images/no_image.png') }}"> @endif <a href="{{ route('profile.edit_image', $user) }}">画像を変更</a> </div> <div> <span>プロフィール</span> <ul> @if($user->profile) <li>{{ $user->profile }}</li> @else <li>プロフィールが設定されていません。</li> @endif </ul> </div> @else <p>設定されていません。</p> @endif @endsection
試したこと
誤字脱字の確認、ルーティングのチェックなど
補足情報(FW/ツールのバージョンなど)
Windows10 Laravel6_v1 Cloud9
0 コメント