@extends('layouts.base') @section('caption', 'Information about employees') @section('title', 'Information about employees') @section('lyric', '') @section('content')
Full name | {{ $employee->full_name }} |
---|---|
Phone | {{ $employee->phone }} |
Email address | {{ $employee->email }} |
Job | {{ $employee->job }} |
Note | {{ $employee->note }} |
Assigned client | {{ $employee->client->full_name }} |
Status | {{ $employee->is_active ? 'Yes' : 'No' }} |
Name | Action |
---|---|
{{ $tasks->name }} | {{ Form::open(['url' => 'tasks/view/' . $tasks->id,'class' => 'pull-right']) }} {{ Form::hidden('_method', 'GET') }} {{ Form::submit('More information about this tasks', ['class' => 'btn btn-primary btn-sm']) }} {{ Form::close() }} | @endforeach