Skip to content

Commit

Permalink
Updated raid exports and raids
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamKyle committed Nov 21, 2024
1 parent c74f6d5 commit 8e37831
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file modified resources/data-imports/Raids/raids.xlsx
Binary file not shown.
2 changes: 2 additions & 0 deletions resources/views/admin/exports/raids/sheets/raid.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<th>raid_monster_ids</th>
<th>raid_boss_location_id</th>
<th>corrupted_location_ids</th>
<th>scheduled_event_description</th>
<th>item_specialty_reward_type</th>
<th>artifact_item_id</th>
</tr>
Expand All @@ -22,6 +23,7 @@
<td>{{!is_null($raid->raid_monster_ids) ? implode(',', \App\Flare\Models\Monster::whereIn('id', $raid->raid_monster_ids)->pluck('name')->toArray()) : ''}}
<td>{{!is_null($raid->raid_boss_location_id) ? $raid->raidBossLocation->name : ''}}</td>
<td>{{!is_null($raid->corrupted_location_ids) ? implode(',', \App\Flare\Models\Location::whereIn('id', $raid->corrupted_location_ids)->pluck('name')->toArray()) : ''}}</td>
<td>{{$raid->scheduled_event_description}}</td>
<td>{{$raid->item_specialty_reward_type}}</td>
<td>{{!is_null($raid->artifact_item_id) ? $raid->artifactItem->name : ''}}</td>
</tr>
Expand Down

0 comments on commit 8e37831

Please sign in to comment.