@extends('layouts.admin.master') @section('title', 'Employee View') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content') @if(count($errors) > 0)
@endif @if($message = Session::get('error'))
@endif @if($message = Session::get('success'))
@endif
Employee Details:
Edit Employee
{{$employee->code }}
{{$employee->name}}
{{$employee->email }}
{{$employee->mobile }}
{{$employee->gender}}
{{$employee->blood_group}}
{{$employee->address }}
General Details:
Edit Employee
{{ $employee->branch->name }}
{{ $employee->user->roles->pluck('name')[0] }}
{{$employee->work_start_time}}
{{$employee->work_end_time}}
{{$employee->cmmission}}
{{$employee->salary}}
@endsection