This should work in your view..
@foreach($arrayname as $array)
<p>{{ $array->first_name }}</p>
<p>{{ $array->last_name }}</p>
<p>{{ $array->firstname }}</p>
<p>{{ $array->firstname }}</p>
<p>{{ $array->grade_id }}</p>
<p>{{ $array->phone_number }}</p>
<p>{{ $array->username }}</p>
<p>{{ $array->password }}</p>
<p>{{ $array->balance }}</p>
<p>{{ $array->activation_code }}</p>
<p>{{ $array-> penalty_counter }}</p>
<p>{{ $array->account_status }}</p>
@endforeach
Using the if statement with Blade templating will help you with printing out each element of an array called $arrayname. You should read more about this from the official laravel documentation concerning blade templates.
Read more about Blade templating with laravel from: https://laravel.com/docs/5.4/blade