@extends('layouts.app', ['title' => __('Companies')]) @section('content') @include('companies.partials.modals')
{{ __('Name') }} | @if (config('settings.show_company_logo')){{ __('Logo') }} | @endif{{ __('Owner') }} | {{ __('Owner email') }} | {{ __('Creation Date') }} | {{ __('Active') }} | ||
---|---|---|---|---|---|---|---|
{{ $company->name }} | @else{{ $company->name }} | @endif @if (config('settings.show_company_logo'))icon }} width="50px" height="50px"> | @endif{{ $company->user?$company->user->name:__('Deleted') }} | {{ $company->user?$company->user->email:__('Deleted') }} | {{ $company->created_at->locale(Config::get('app.locale'))->isoFormat('LLLL') }} | @if($company->active == 1) {{ __('Active') }} @else {{ __('Not active') }} @endif |