@extends('layouts.default') @section('meta')
{{ __("Employee Name") }} | {{ __("Email") }} | {{ __("Account Type") }} | {{ __("Status") }} |
---|---|---|---|
{{ $v->name }} | {{ $v->email }} | @if( $v->acc_type == 2) Admin @else Employee @endif | @if($v->status == 1) Active @endif @if($v->status == 0) Disabled @endif |