home.blad.php
@foreach($profiles as $profile)
@if(Auth::user()->email == $profile->email && Auth::user())
<a href="{{ url('write') }}" class="write">WRITE</a>
@endif
@endforeach
routes.php文件
Route::get('write', 'HomeController@write');
HomeController.php
public function write()
{
return view('write');
}
write.blade.php没有内容。当我点击此链接页面似乎被更改,但页面不会更改。只是网址被更改了。我怎样才能重定向write.blade.php?
答案 0 :(得分:0)
如果您发布完整的家庭控制器会更好。
如果您获得所有网址的相同主页内容。您可能没有正确启用nginx / apache重写。