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
-Files | -- |
---|---|
- {{ $file }} - | -- Move - Rename - Delete - | -
Staff | -Action | -Action Details | -Date | - - +
---|---|---|---|
{!! $log->user->displayName !!} | -{!! $log->action !!} | -{!! $log->action_details !!} | -{!! format_date($log->created_at) !!} ({!! pretty_date($log->created_at) !!}) | -
You rolled {{ $quantity }} time{{ $quantity != 1 ? 's' : '' }} for the following:
-# | -Reward | -Quantity | - - +
---|---|---|
{{ $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 @@# | -User | - - +
---|---|
{{ $winner->position }} | -{!! $winner->displayHolderName !!} | -
# | -User | - @if ($raffle->is_active < 2) -- @endif - - - @foreach ($tickets as $count => $ticket) - |
---|---|---|
{{ $page * 200 + $count + 1 }} | -{!! $ticket->displayHolderName !!} | - @if ($raffle->is_active < 2) -{!! Form::open(['url' => 'admin/raffles/view/ticket/delete/' . $ticket->id]) !!}{!! Form::submit('Delete', ['class' => 'btn btn-danger btn-sm']) !!}{!! Form::close() !!} | - @endif -
No settings found.
@else {!! $settings->render() !!} -Name | -Description | -Value | -- |
---|---|---|---|
{{ $setting->name }} | -{{ $setting->description }} | -
- {!! Form::open(['url' => 'admin/staff-reward-settings/' . $setting->key, 'class' => 'd-flex justify-content-end']) !!}
-
- {!! Form::text('value', $setting->value, ['class' => 'form-control']) !!}
+
+
+
+ {{ $setting->name }}
+
+
+ {{ $setting->description }}
+
+
+ {!! Form::open(['url' => 'admin/staff-reward-settings/' . $setting->key, 'class' => 'd-flex justify-content-end']) !!}
+
-
+ {!! Form::text('value', $setting->value, ['class' => 'form-control']) !!}
+
+
+ {!! Form::submit('Edit', ['class' => 'btn btn-primary']) !!}
+
+ {!! Form::close() !!}
- {!! Form::submit('Edit', ['class' => 'btn btn-primary']) !!}
-
- {!! Form::close() !!}
- |
-
This is a list of changes that have been made to this account's information, whether by the user or by a staff member.
{!! $logs->render() !!} -Staff Member | -Type | -Data | -Date | -
---|---|---|---|
{!! $log->staff_id ? $log->staff->displayName : '---' !!} | -{{ $log->type }} | -
- @foreach ($log->data as $key => $value)
-
- @if (is_string($value))
- {{ ucfirst(str_replace('_', ' ', $key)) }}: {{ $value }}
- @endif
-
- @endforeach
- |
- {!! format_date($log->created_at) !!} | -