@extends('backend.layouts.app') @section('content')

Tournament Parameters

@php $selected_year = request()->year?request()->year:date('Y'); @endphp

@if($selected_year) Print
@foreach($tournaments as $tour) @endforeach
Name Reg. Start Reg. End Tour Start Tour End Registration Fee
{{$tour->tour_name}} {{$tour->registration_start}} {{$tour->registration_end}} {{$tour->tour_start}} {{$tour->tour_end}} {{number_format($tour->registration_fee, 2)}}
@endif
@endsection @section('before_body_end') @endsection