MJ DEV
MJ DEV

Reputation: 704

Progress bar with Laravel and Vue.js

I want show my total count as a progress bar with Laravel function. I wrote this function to get total count.

$countcomment = DB::table('comments')
                ->where('status', '=', 'Approved')
                ->count();

I want to show this count compare with 5000 as a percentage or value.my maximum count value is 5000.

Upvotes: 1

Views: 1234

Answers (1)

Kapitan Teemo
Kapitan Teemo

Reputation: 2164

if you want to compute for the percentage of your $countcomment you can use this formula:

$percentage = ($countcomment/5000)*100;

Bootstrap 4

<div class="progress">
    <div class="progress-bar" role="progressbar" style="width: {{$percentage}}%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>

Upvotes: 1

Related Questions