{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content')

Medal List

@php $platinumcount = 0; $goldcount = 0; $silvercount = 0; $bronzecount = 0; @endphp @foreach ($medalcount as $row) @if($row->apparatus_name == 'SUBTOTAL') @php $platinumcount += $row->platinum_medals; $goldcount += $row->gold_medals; $silvercount += $row->silver_medals; $bronzecount += $row->bronze_medals; @endphp @endif @endforeach
Category Apparatus Platinum Gold Silver Bronze
{{ $row->category }} {{ $row->apparatus_name }} {{ $row->platinum_medals }} {{ $row->gold_medals }} {{ $row->silver_medals }} {{ $row->bronze_medals }}
Total {{ $platinumcount }} {{ $goldcount }} {{ $silvercount }} {{ $bronzecount }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') {{-- vendors --}} {{-- page scripts --}} @endsection