@extends('admin.layout') @section('subtitle') Game Administration @stop @section('content')

{{ $game -> id }} Administration

Import

Weapons

@foreach($weapons as $weapon) @endforeach
ID Name Attachments Loadouts Image_URL Min Attachments Max Attachments Type Created at Updated at Actions
{{ $weapon -> id }} {{ $weapon -> name }} {{ count($weapon -> attachments) }} {{ count(Loadout::where('weapon_id', $weapon -> id) -> get()) }} @if ($weapon -> thumb_url) thumb URL @else No Image @endif {{ $weapon -> min_attachments }} {{ $weapon -> max_attachments }} {{ $weapon -> type }} {{ $weapon -> created_at }} {{ $weapon -> updated_at }}  

Attachments

@foreach($attachments as $attachment) @endforeach
ID Name Slot Image_URL Created at Updated at Actions
{{ $attachment -> id }} {{ $attachment -> name }} {{ $attachment -> slot }} @if ($attachment -> image_url) Image URL @else No Image @endif {{ $attachment -> created_at }} {{ $attachment -> updated_at }}  
@stop @section('page-scripts') @stop