@extends('main') @section('title' , '| Wyścigi') @section('content') @php function hoursToMinutes($hours) //do usuniecia { $minutes = 0; if (strpos($hours, ':') !== false) { // Split hours and minutes. list($hours, $minutes) = explode(':', $hours); } return $hours * 60 + $minutes; } @endphp
Data: {{ date('j.n.Y H:i', strtotime($race->startDate)) }}
Miejsce startu: {{ $race->place }}
Liczba miejsc: {{ $race->numberOfContestants }}
Opis: {{ substr($race->info, 0, 50) }}{{ strlen($race->info) > 50 ? "..." : "" }}
{!! Form::model($race, ['route' => ['race' , $race->id] , 'method' => 'POST']) !!} {{ Form::submit('Zapisz się na wyścig' , ['class' => 'btn btn-primary btn-block form-spacing-top']) }} {{ Form::close() }}