mardi 27 août 2019

Laravel: How to get count of total Comments of total Posts

I have 10000 posts and each post have many comments. I need to calculate all comments count when i take posts.

[
    'post_1' => [
        'comments' => [
            'comment_1' => 'trst comment',
            'comment_2' => 'trst comment',
            'comment_3' => 'trst comment',
        ],
    ],
    'post_2' => [
        'comments' => [
            'comment_1' => 'trst comment',
            'comment_2' => 'trst comment',
            'comment_3' => 'trst comment',
        ],
    ],
    'post_3' => [
        'comments' => [
            'comment_1' => 'trst comment',
            'comment_2' => 'trst comment',
            'comment_3' => 'trst comment',
        ],
    ],
]

there are total 9 comments. i want get this count.

In laravel is possible to get count of hasMany relation of one row

Post::first()->comments()-count()

I need like this:

Post::get()->comments()-count()

i dont want use foreach because my server may get down.



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2zp1rAn
via IFTTT

Aucun commentaire:

Enregistrer un commentaire