@extends('layouts.base') @section('caption', 'Information about companies') @section('title', 'Information about companies') @section('lyric', '') @section('content')
| 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' }} |