diff --git a/resources/views/admin/files/index.blade.php b/resources/views/admin/files/index.blade.php index 172ef658d5..0c83b15966 100644 --- a/resources/views/admin/files/index.blade.php +++ b/resources/views/admin/files/index.blade.php @@ -33,28 +33,36 @@ @endif
Upload File
- - - - - - - - +
+
+
+
+
Files
+
+
+
+
+
+
+
@foreach ($files as $file) -
- - - +
+
+ +
+
+ Move + Rename + Delete +
+
+
+
@endforeach - -
Files
- {{ $file }} - - Move - Rename - Delete -
+ + @if ($folder && !count($files)) {!! $logs->render() !!} - - - - - - - - +
+
+
+
+
Staff
+
+
+
Action
+
+
+
Action Details
+
+
+
Date
+
+
+
+
@foreach ($logs as $log) -
- - - - - +
+
+
+
{!! $log->user->displayName !!}
+
+
+
{!! $log->action !!}
+
+
+
{!! $log->action_details !!}
+
+
+
{!! format_date($log->created_at) !!} ({!! pretty_date($log->created_at) !!})
+
+
+
@endforeach - -
StaffActionAction DetailsDate
{!! $log->user->displayName !!}{!! $log->action !!}{!! $log->action_details !!}{!! format_date($log->created_at) !!} ({!! pretty_date($log->created_at) !!})
+ + {!! $logs->render() !!} @endsection diff --git a/resources/views/admin/loot_tables/_roll_loot_table.blade.php b/resources/views/admin/loot_tables/_roll_loot_table.blade.php index b825ae47b0..9940e7d43a 100644 --- a/resources/views/admin/loot_tables/_roll_loot_table.blade.php +++ b/resources/views/admin/loot_tables/_roll_loot_table.blade.php @@ -1,25 +1,41 @@

You rolled {{ $quantity }} time{{ $quantity != 1 ? 's' : '' }} for the following:

- - - - - - - +
+
+
+
+
#
+
+
+
Reward
+
+
+
Quantity
+
+
+
+
@foreach ($results as $result) @foreach ($result as $type) @if (count($type)) @foreach ($type as $t) -
- - - - +
+
+
+
{{ $count++ }}
+
+
+
{!! $t['asset']->displayName !!}
+
+
+
{{ $t['quantity'] }}
+
+
+
@endforeach @endif @endforeach @endforeach - -
#RewardQuantity
{{ $count++ }}{!! $t['asset']->displayName !!}{{ $t['quantity'] }}
+ +

Note: "None" results are not shown in this table.

diff --git a/resources/views/admin/raffle/ticket_index.blade.php b/resources/views/admin/raffle/ticket_index.blade.php index a54f2afcc7..9639bb5229 100644 --- a/resources/views/admin/raffle/ticket_index.blade.php +++ b/resources/views/admin/raffle/ticket_index.blade.php @@ -35,20 +35,32 @@
Winner(s)
- - - - - - +
+
+
+
+
#
+
+
+
User
+
+
+
+
@foreach ($raffle->tickets()->winners()->get() as $winner) -
- - - +
+
+
+
{{ $winner->position }}
+
+
+
{!! $winner->displayHolderName !!}
+
+
+
@endforeach - -
#User
{{ $winner->position }}{!! $winner->displayHolderName !!}
+
+
@endif @@ -57,90 +69,105 @@
{!! $tickets->render() !!}
- - - - - @if ($raffle->is_active < 2) - - @endif - - - @foreach ($tickets as $count => $ticket) - - - - @if ($raffle->is_active < 2) - - @endif - - @endforeach - -
#User
{{ $page * 200 + $count + 1 }}{!! $ticket->displayHolderName !!}{!! Form::open(['url' => 'admin/raffles/view/ticket/delete/' . $ticket->id]) !!}{!! Form::submit('Delete', ['class' => 'btn btn-danger btn-sm']) !!}{!! Form::close() !!}
-
-
{!! $tickets->render() !!}
- - + {!! $logs->render() !!} @endsection