diff --git a/resources/views/contracts/includes/private.blade.php b/resources/views/contracts/includes/private.blade.php index 79a0ab6fa..259992a70 100644 --- a/resources/views/contracts/includes/private.blade.php +++ b/resources/views/contracts/includes/private.blade.php @@ -20,17 +20,14 @@
End Date: {{ $contract['end_date'] }}
- -
- {{ $contract['body'] }} -
-

- -
- Lowest Bid: {{ number_format($contract['lowestbid'], 2, '.', ',') }} -
-
+
+ {{ $contract['body'] }} +
+
+
+ Lowest Bid: {{ number_format($contract['lowestbid'], 2, '.', ',') }} +

@foreach($contract['bids'] as $bid) @if(auth()->user()->character_id == $bid['character_id']) diff --git a/resources/views/contracts/includes/public.blade.php b/resources/views/contracts/includes/public.blade.php index 9af9e432f..21db91496 100644 --- a/resources/views/contracts/includes/public.blade.php +++ b/resources/views/contracts/includes/public.blade.php @@ -8,9 +8,11 @@
{{ $contract['title'] }}
+
Type: Public
+
Bid on Contract
@@ -20,7 +22,8 @@
End Date: {{ $contract['end_date'] }}
-
+
+
{{ $contract['body'] }}

@@ -31,31 +34,29 @@
@if($contract['bid_count'] > 0) - - - - - - - - - @foreach($contract['bids'] as $bid) - - - - @if(auth()->user()->character_id == $bid['character_id']) - - @else - - @endif - - @endforeach - -
CorporationAmount
{{ $bid['corporation_name'] }}{{ number_format($bid['bid_amount'], 2, '.', ',') }} - Modify Bid - Delete Bid -
-
+ + + + + + + + @foreach($contract['bids'] as $bid) + + + + @if(auth()->user()->character_id == $bid['character_id']) + + @else + + @endif + + @endforeach + +
CorporationAmount
{{ $bid['corporation_name'] }}{{ number_format($bid['bid_amount'], 2, '.', ',') }} + Modify Bid + Delete Bid +
@endif