JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Employee Profile') }} @endsection @section('breadcrumb') @endsection @section('action-button') @endsection @php // $profile = asset(Storage::url('uploads/avatar/')); $profile = \App\Models\Utility::get_file('uploads/avatar/'); @endphp @section('content')
{{ Form::open(['route' => ['employee.profile'], 'method' => 'get', 'id' => 'employee_profile_filter']) }}
{{ Form::label('branch', __('Select Branch*'), ['class' => 'form-label']) }} {{ Form::select('branch', $brances, isset($_GET['branch']) ? $_GET['branch'] : '', ['class' => ' select-width form-control', 'id' => 'branch_id']) }}
{{ Form::label('department', __('Department'), ['class' => 'form-label']) }}
{{ Form::label('designation', __('Designation'), ['class' => 'form-label']) }}
{{ Form::close() }}
@forelse($employees as $employee)
@if ($employee->user->is_active == 1) @else @endif

{{ $employee->name }}

{{ ucfirst(!empty($employee->designation) ? $employee->designation->name : '') }}
@endforeach
@endsection @push('script-page') @endpush