So basic I have two tables "Accounts" and "Characters" that are linked by a single ID Each "Account" has 3 "Characters" So I want to display the 3 characters that are linked to the main "Account"
this is my HomeController
{
$data = DB::table('characters')
->join('accounts', 'accounts.cUid', '=','characters.pUniqueID')->get();
return view('home', compact('data'));
}
this is my Home.Blade
@foreach($data as $per)
@if( $per->pUniqueID == Auth::user()->cUid )
....
....
@else
<script>window.location.href = '{{url("/characters")}}'; </script>
@endif
@endforeach