In blade I'm trying to determine which button needs to show, but I get the following error: Trying to get property 'uid' of non-object.
In my Entry model I made this relation:
public function blockeduser() {
return $this->hasOne(BlockedUser::class);
}
In my BlockedUser model I made this relation:
public function entry() {
return $this->belongsTo(Entry::class);
}
The code in the blade file:
@foreach($entries as $entry)
<tr>
<td style="max-width: 150px;">
<div class="btn-group">
<form target="_blank" method="post" action="{{route('entries.show', $entry->id)}}">
@method("GET")
<button style="margin-right: 5px;" type="submit" class="btn btn-success">View</button>
</form>
@if ($entry->uid !== $entry->blockeduser->uid)
<form method="post" action="{{route('entries.blockUser', $entry->id)}}">
@csrf
<button style="margin-right: 5px;" type="submit" class="btn btn-warning">Block</button>
</form>
@else
<form method="post" action="{{route('entries.unblockUser', $entry->id)}}">
@csrf
<button style="margin-right: 5px;" type="submit" class="btn btn-warning">Unblock</button>
</form>
@endif
<form method="post" action="{{route('entries.destroy', $entry->id)}}">
@csrf
@method("DELETE")
<button style="margin-right: 5px;" type="submit" class="btn btn-danger">Delete</button>
</form>
</div>
</td>
</tr>
@endforeach
How can I access the uid inside the blocked users table that has a relation with the Entry and compare them and determine which form needs te show.
Or is there a way I can check if a table contains a row that has a relation with the Entry?
Possible solution?
Because$entry->blockeduser->uid
was not found I edited the if statement inside the blade file:
@if ($entry->blockeduser == null)
<form method="post" action="{{route('entries.blockUser', $entry->id)}}">
@csrf
<button style="margin-right: 5px;" type="submit" class="btn btn-warning">Block</button>
</form>
@elseif ($entry->blockeduser !== null)
<form method="post" action="{{route('entries.unblockUser', $entry->id)}}">
@csrf
<button style="margin-right: 5px;" type="submit" class="btn btn-warning">Unblock</button>
</form>
@endif
check if$entry->blockeduser
exists before you check theuid
inside that like this:
if ($entry->blockeduser instanceof \App\Models\BlockedUser && $entry->uid !== $entry->blockeduser->uid)
you can use optional global helper if$entry
is null not throw exception
optional($entry)->uid;
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.