@extends("base")
@section("head")
{{ $battle->location->name }}
@parent
@stop
@section("body")
Participants
-
{{$battle->attacker->name}} (Attacker)
-
{{$battle->defender->name}} (Defender)
-
The winner is: {{$battle->victor->name}}
Back
Battle log:
@foreach($battle->rounds as $index => $round)
-
Round {{$index}}
@foreach($round->turns as $turn)
-
@if($turn->damage)
{{ $turn->executor->name }} did {{ $turn->damage }} damage to {{ $turn->target->name }}
@else
{{ $turn->executor->name }} was unable to hit {{ $turn->target->name }}
@endif
@endforeach
@endforeach
@stop