@extends('layouts.base') @section('caption', 'Information about companies') @section('title', 'Information about companies') @section('lyric', '') @section('content')
@if(session()->has('message_success'))
Well done! {{ session()->get('message_success') }}
@elseif(session()->has('message_danger'))
Danger! {{ session()->get('message_danger') }}
@endif
More information about {{ $company->name }}

Name {{ $company->name }}
Tax number {{ $company->tax_number }}
Phone {{ $company->phone }}
City {{ $company->city }}
Billing Address {{ $company->billing_address }}
Country {{ $company->country }}
Postal code {{ $company->postal_code }}
Employee size {{ $company->employees_size }}
Assigned client {{ $company->client->full_name }}
Fax {{ $company->fax }}
Description {{ $company->description }}
Status {{ $company->is_active ? 'Yes' : 'No' }}

Lorem ipsum

@endsection