add docs for the case
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
<i class="fas fa-times p-3 cursor-pointer text-dark opacity-5 position-absolute end-0 top-0 d-none d-xl-none" aria-hidden="true" id="iconSidenav"></i>
|
||||
<a class="navbar-brand px-4 py-3 m-0" href="{{ path('app_dashboard') }}">
|
||||
{% if app.user.company.companyLogo %}
|
||||
<img src="/uploads/company/{{ app.user.company.companyLogo }}" class="navbar-brand-img" width="30" height="30" alt="main_logo">
|
||||
<img src="{{ company_image_path }}/{{ app.user.company.companyLogo }}" class="navbar-brand-img" width="30" height="30" alt="main_logo">
|
||||
{% else %}
|
||||
<img src="{{ asset('img/logo-ct-dark.png') }}" class="navbar-brand-img" width="30" height="30" alt="main_logo">
|
||||
{% endif %}
|
||||
|
@ -15,8 +15,8 @@
|
||||
|
||||
<div class="ms-md-auto pe-md-3 d-flex align-items-center">
|
||||
<div class="input-group input-group-outline">
|
||||
<label class="form-label">Case Search...</label>
|
||||
<input type="text" class="form-control">
|
||||
<label class="form-label" for='case-search'>Case Search...</label>
|
||||
<input type="text" id='case-search' class="form-control">
|
||||
</div>
|
||||
</div>
|
||||
<ul class="navbar-nav d-flex align-items-center justify-content-end">
|
||||
@ -47,7 +47,7 @@
|
||||
<a class='dropdown-item border-radius-md' href="javascript:openNotification('{{ note.id }}');">
|
||||
<div class='d-flex py-1'>
|
||||
<div class='my-auto'>
|
||||
{% if note.sender.imageName %}<img src='/uploads/user_images/{{ note.sender.imageName }}' class='avatar avatar-sm me-3'><br/>
|
||||
{% if note.sender.imageName %}<img src='{{ user_image_path }}/{{ note.sender.imageName }}' class='avatar avatar-sm me-3'><br/>
|
||||
{% endif %}
|
||||
<i class='material-symbols-rounded opacity-7'>
|
||||
{% if note.type == enum('App\\Enums\\MessageType').CASE %}
|
||||
|
Reference in New Issue
Block a user