@extends('layout/ace')
@section('breadcrumbs')
{{ Breadcrumbs::render('KorisniciShow', $user) }}
@endsection
@section('title', 'Pregled korisnika')
@section('content')
@include('cms.lms_user.partials.show._user_header')
@if (isset($user->company))
@endif
@if (isset($user->company))
@endif
@include('cms.lms_user.partials.show._tables')
@include('cms.company_bought_package.partials.show_bought_package_users._modal-change-status-to-enabled')
@include('cms.company_bought_package.partials.show_bought_package_users._modal-change-status-to-disabled')
@if ($user->enrolledSubscribes->count() == 0)
@include('cms.lms_user.partials._modal-add-user-licence')
@else
@include('cms.lms_user.partials.show._edit-user-licence-modal')
@endif
@endsection
@section('modals')
@if ($user->is_b2c)
@livewire('manual-course-enrollment', ['userId' => $user->id])
@livewire('c-m-s.b2-c-user-subscription', ['is_renew' => (new App\Services\LMSUserService())->isUserSubscribeExpired($user)])
@endif
@endsection
@section('scripts')
@parent
@if ($user->enrolledSubscribes->count() == 0)
@else
@endif
@endsection