@extends('adminlte::page') @section('title', 'Add Tolly Fest Point') @section('content')

Add Tolly Fest Point

@csrf

Basic Information

@error('point_title')

{{ $message }}

@enderror
@error('date')

{{ $message }}

@enderror
@error('status')

{{ $message }}

@enderror
@error('start_date_time')

{{ $message }}

@enderror
@error('end_date_time')

{{ $message }}

@enderror

Points Matrix

@if($teams->count() > 0 && $disciplines->count() > 0)
@foreach($disciplines as $discipline) @endforeach @foreach($teams as $team) @foreach($disciplines as $discipline) @endforeach @endforeach
Team Name {{ $discipline->discipline_name }} Total
{{ $team->notice_title }}
@else
Warning! Please add Teams and Disciplines first before creating points.
@endif
@stop @section('css') @stop @section('js') @stop