Метод whereInstanceOf у Laravel дозволяє зручно фільтрувати колекції за типами об'єктів. Це особливо корисно при роботі з поліформними відносинами або колекціями змішаних об'єктів.
<?php
use App\Models\User;
use App\Models\Post;
use App\Models\Comment;
use Illuminate\Support\Collection;
$collection = collect([
new User(['name' => 'John']),
new Post(['title' => 'Hello']),
new User(['name' => 'Jane']),
]);
$users = $collection->whereInstanceOf(User::class);
Розгляньмо практичний приклад використання для формування стрічки сповіщень з різними типами активностей:
<?php
namespace App\Services;
use App\Models\Comment;
use App\Models\Like;
use App\Models\Follow;
use Illuminate\Support\Collection;
class ActivityFeedService
{
public function getUserFeed(User $user): array
{
// Отримати всі активності
$activities = collect([
...$user->comments()->latest()->limit(5)->get(),
...$user->likes()->latest()->limit(5)->get(),
...$user->follows()->latest()->limit(5)->get(),
]);
// Відсортувати активності за датою створення
$activities = $activities->sortByDesc('created_at');
return [
'comments' => $activities->whereInstanceOf(Comment::class)
->map(fn (Comment $comment) => [
'type' => 'comment',
'text' => $comment->body,
'post_id' => $comment->post_id,
'created_at' => $comment->created_at
]),
'likes' => $activities->whereInstanceOf(Like::class)
->map(fn (Like $like) => [
'type' => 'like',
'post_id' => $like->post_id,
'created_at' => $like->created_at
]),
'follows' => $activities->whereInstanceOf(Follow::class)
->map(fn (Follow $follow) => [
'type' => 'follow',
'followed_user_id' => $follow->followed_id,
'created_at' => $follow->created_at
])
];
}
}
Метод whereInstanceOf спрощує фільтрацію на основі типу в колекціях, що робить обробку змішаних типів об'єктів більш зручною та підтримує чистоту коду