@extends('Common::admin.layout.page')
@section('page')
| {{ __('playground') }} |
{{ $match->playground?->Name }} |
| {{ __('date') }} |
{{ $match->date }} |
| {{ __('start time') }} |
{{ $match->start_time }} |
| {{ __('end time') }} |
{{ $match->end_time }} |
| {{ __('subscribers') }} |
{{ $match->players_per_side * 2 }} |
| {{ __('price') }} |
{{ $match->price }} |
| {{ __('name') }} |
{{ __('mobile') }} |
{{ __('team side') }} |
{{ __('created at') }} |
@if($match->teamPlayers->count() > 0)
@foreach($match->teamPlayers as $player)
|
{{$player->name}}
|
{{$player->full_phone}}
|
{{$player->pivot->team_side}}
|
{{$player->pivot->created_at}}
|
@endforeach
@else
| {{__('there is no data')}} |
@endif
@stop