@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ $company->name }}
@parent
@stop
@section('header_right')
@endsection
{{-- Page content --}}
@section('content')
@endsection
@section('moar_scripts')
@can('files', $company)
@include ('modals.upload-file', ['item_type' => 'companies', 'item_id' => $company->id])
@endcan
@include ('partials.bootstrap-table')
@endsection