@extends('layouts.app') @section('content')
@if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
Manage Employee
Add New Employee @if(isset($employee_list)) @foreach($employee_list as $row) @endforeach
Name Designation Email Action
{{$row->name}} {{$row->designation}} {{$row->email}} {{ Html::link('/manageEmployee/'.$row->id.'/edit', 'Details')}}
{{method_field('PUT')}}
@endif
@endsection