@foreach($items as $i)
@if(!isset($i->img))
@if($i->rarity == 'rare')
Arcana
@endif
@if($i->rarity == 'covert')
Immortal
@endif
@if($i->rarity == 'classified')
Legendary
@endif
@if($i->rarity == 'restricted')
Mythical
@endif
@if($i->rarity == 'milspec')
Rare
@endif
@if($i->rarity == 'uncommon')
Uncommon
@endif
@if($i->rarity == NULL)
Common
@endif
@endif
@if(!isset($i->img))
@else
@endif
{{ $i->price*100 }}
@endforeach