Ignore:
Timestamp:
06/05/24 13:35:43 (5 months ago)
Author:
bube-ristovska <ristovska725@…>
Branches:
main
Children:
768f473
Parents:
f7acd52
Message:

New feature - details for employee

File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/views/case.blade.php

    rf7acd52 r249bf91  
    7171        @if (Session::get('is_policeman'))
    7272            <a href="#" class="text-white text-3xl font-semibold uppercase hover:text-gray-300">Полицаец</a>
     73            <button class="w-full bg-white cta-btn font-semibold py-2 mt-5 rounded-br-lg rounded-bl-lg rounded-tr-lg shadow-lg hover:shadow-xl hover:bg-gray-300 flex items-center justify-center">
     74                <i class="fas fa-plus mr-3"></i> <a href="/register-statement">Додади изјава</a>
     75            </button>
    7376        @else
    7477            <a href="#" class="text-white text-3xl font-semibold uppercase hover:text-gray-300">Началник</a>
     
    104107       class="absolute w-full upgrade-btn bottom-0 active-nav-link text-white flex items-center justify-center py-4">
    105108        <i class="fas fa-arrow-circle-up mr-3"></i>
    106         Поставки за профил
     109
    107110    </a>
    108111</aside>
     
    115118            <button @click="isOpen = !isOpen"
    116119                    class="realtive z-10 w-12 h-12 rounded-full overflow-hidden border-4 border-gray-400 hover:border-gray-300 focus:border-gray-300 focus:outline-none">
    117                 <img src="https://source.unsplash.com/uJ8LNVCBjFQ/400x400">
     120                @php
     121                    $person = DB::select('select * from people where pe_id=:pe_id;', ['pe_id' => Session::get('pe_id')]);
     122
     123                    if (!empty($person)) {
     124                        $image = $person[0]->picture;
     125                    } else {
     126                        $image = null;
     127                    }
     128                @endphp
     129
     130                <img src="{{ $image }}">
     131
    118132            </button>
    119133            <button x-show="isOpen" @click="isOpen = false" class="h-full w-full fixed inset-0 cursor-default"></button>
Note: See TracChangeset for help on using the changeset viewer.