@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ $company->name }}
@parent
@stop
@section('header_right')
@endsection
{{-- Page content --}}
@section('content')
@if ($company->children->isNotEmpty())
@endif
@if ($company->children->isNotEmpty())
@endif
@if ($company->parent)
{!! $company->parent->present()->nameUrl !!}
@endif
@if ($company->children->isNotEmpty())
{{ trans('admin/companies/table.children') }}
@foreach ($company->children->sortBy('name') as $child)
{!! $child->present()->formattedNameLink !!}
@endforeach
@endif
@endsection
@section('moar_scripts')
@can('files', $company)
@include ('modals.upload-file', ['item_type' => 'companies', 'item_id' => $company->id])
@endcan
@include ('partials.bootstrap-table')
@endsection