@extends('layouts.app') @section('title', session('company_code') . ' Elite System') @section('header') Dashboard @endsection @section('body')
|
Employee Name
{{ strtoupper($user->name) }} |
Branch
{{ strtoupper(session('branch_name')) }} |
Position(s)
@foreach($user->positions AS $p) {{ strtoupper($p->position_desc) }} @endforeach |
Username
{{ strtoupper($user->username) }} |