@extends('layouts.master') @section('title', 'Participants List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header')

Participants

{{--

Hello! This is Sandbox

--}}
Participants
@role('Admin|Officer')
Import Participants Add
@endrole
@role('Admin|Officer') @endrole @php // $i = 0; @endphp @foreach ($participantslist as $i => $item) @role('Admin|Officer') @endrole @endforeach
No. Student ID Name participated Hours
{{ ++$i }}. {{ $item->student_code }} @if($item->student_name == null) {{ $item->student_firstname }} {{ $item->student_lastname }} @else {{ $item->student_name }} @endif {{ $item->participants_st_name }} {{ substr($item->participants_hours, 0, 5) }} {{-- @role('Studebnt') --}} {{-- --}} {{-- @endrole --}} {{-- @if (Auth::user()->hasRole('Admin')) --}} {{-- @endif --}}
@include('layouts.footer') @endsection