@extends('layout/ace') @section('breadcrumbs') {{ Breadcrumbs::render('KompanijeShow', $company) }} @endsection @section('title', "Kompanije | " . htmlspecialchars_decode($company->name)) @section('content')

{!! htmlspecialchars_decode($company->name) !!}

Izmeni @if ($owner && ($owner->status == 1) && ($owner->suspend == 0)) Uloguj se kao vlasnik @endif Svi korisnici @if(in_array(2, $company->currentRoles->pluck('id')->toArray())) Dodaj paket @endif Dodaj korisnika {{-- Upiši subscribe --}} Upiši pretplatu
{{-- --}}
@if ($company->img_120x50) {{ htmlspecialchars_decode($company->name) }} @endif
@foreach ($company->currentRoles as $role) @if ($role->id == 2)

Info o kompaniji

  • Zaposlenih ({{ $company->employees_count }})
  • Aktivirani nalozi {{ $company->active_employees_count }}
  • Aktivni nalozi {{ $company->employees_with_action_count }}
  • Ima licencu {{ $company->employees_with_active_licence_count }}
@endif @if ($role->id == 1)

Info o vendoru

  • Predavača ({{ $company->teachers_count }})
  • Kurseva (0)
@endif @endforeach

Kontakt

  • {{ $company->phone }}
  • {{ $company->email }}

Adresa

  • {{ $company->address }}
@foreach ($company->currentRoles as $role) @if ($role->id == 1)

Naziv

  • {{ htmlspecialchars_decode($company->name) }}
@endif @endforeach {{--

Društvene mreže

--}}

O kompaniji

{{ $company->description }}

@foreach ($company->roles as $role) @if ($role->id == (new App\Services\CompanyRoleService)->getVendorRoleId())
@include('cms.company.partials.vendor_tables')
@endif @if ($role->id == (new App\Services\CompanyRoleService)->getCompanyRoleId())
@include('cms.company.partials.company_tables')
@endif @endforeach
@livewire('company-enroll-subscribe', ['company' => $company]) @livewire('show-bought-subscribe', ['company' => $company]) @endsection @section('scripts') @parent {{-- --}} @endsection