@extends('layout.main') @section('title', 'Detail Pegawai') @section('prev-page')
Home
-
Daftar Pegawai
@endsection @section('content')
Detail Pegawai
Rubah Pegawai
Nama:
{{ $detail->name }}
Email:
{{ $detail->email }}
No. HP:
{{ $detail->mobile_phone }}
Alamat:
{!! nl2br($detail->address) !!}
Jabatan:
{{ $detail->position }}
Tanggal Bergabung:
{{ date_format(date_create($detail->joined), 'd F Y') }}
Status:
{{ $detail->status->name }}
@endsection @section('other-scripts') @endsection