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.