target blank for urls

This commit is contained in:
Conkley 2022-07-17 13:01:06 +10:00
parent 8f87d2e58d
commit d9a3eb8406
1 changed files with 3 additions and 3 deletions

View File

@ -32,14 +32,14 @@
<ul> <ul>
<li> <li>
<h3><a <h3><a
href="{{ route('profile', App\Models\User::where('name', $data['invited_by'])->first()->id) }}">{{ $data['invited_by'] }}</a> href="{{ route('profile', App\Models\User::where('name', $data['invited_by'])->first()->id) }}" target="_blank">{{ $data['invited_by'] }}</a>
</h3> </h3>
</li> </li>
<ul> <ul>
<li><a href="{{ route('profile', $data['user']->id) }}">{{ $data['user']->name }}</a></li> <li><a href="{{ route('profile', $data['user']->id) }}" target="_blank">{{ $data['user']->name }}</a></li>
<ul> <ul>
@foreach ($data['children'] as $child) @foreach ($data['children'] as $child)
<li><a href="{{ route('profile', $child->id) }}">{{ $child->name }}</a></li> <li><a href="{{ route('profile', $child->id) }}" target="_blank">{{ $child->name }}</a></li>
@endforeach @endforeach
</ul> </ul>
</ul> </ul>