@extends('layouts.default') @section('title') User Profile @endsection @section('header-style') @endsection @section('content')

User Profile


{{-- {{dd(Auth::user()->employee)}}--}}
@if(isset(Auth::user()->employee->emp_photo)) avatar @else avatar @endif
{{isset(Auth::user()->employee->emp_code)?Auth::user()->employee->emp_code:''}}
{{isset(Auth::user()->employee->emp_id)?Auth::user()->employee->emp_id:''}}
{{isset(Auth::user()->employee->emp_name)?Auth::user()->employee->emp_name:''}}
{{isset(Auth::user()->employee->emp_father_name)?Auth::user()->employee->emp_father_name:''}}
{{isset(Auth::user()->employee->emp_mother_name)?Auth::user()->employee->emp_mother_name:''}}
{{isset(Auth::user()->employee->department['department_name'])?Auth::user()->employee->department['department_name']:''}}
{{isset(Auth::user()->employee->designation['designation'])?Auth::user()->employee->designation['designation']:''}}

@endsection