@extends('layout') @section('content')
{{$currentOrganization->name}}
Here is all ship you have in your organization
✕
@foreach($ships as $ship) @php $currentCount = $ship->currentOrganizationShipsCount($currentOrganization->id) @endphp @if($currentCount > 0)
{{$ship->manufacturer}} {{$ship->name}}
x {{$currentCount}}
@endif @endforeach
@stop