@extends('adminlte::page')
@section('title', $title)
@section('content_header')
{{@$title}}
@stop
@section('content')
@include('admin.includes.notification')
| Id |
Employee Name |
Position Code |
Employee Code |
Designation |
Position |
Action |
@if(count(@$result)==0)
| No record found. |
@else
@foreach(@$result as $row)
| {{++$j}} |
{{$row->name}} |
{{$row->pos_code}} |
{{$row->emp_code}} |
{{$row->designation}} |
{{$row->position_name}} |
|
@endforeach
@endif
@stop
@section('css')
@stop