@extends('layouts.base') @section('caption', 'Information about client: ' . $clientDetails->full_name) @section('title', 'Information about client: ' . $clientDetails->full_name) @section('content')
| Full name | {{ $clientDetails->full_name }} |
|---|---|
| Phone | {{ $clientDetails->phone }} |
| Email address | {{ $clientDetails->email }} |
| Section | {{ $clientDetails->section }} |
| Budget | |
| Status | {{ $clientDetails->is_active ? 'Active' : 'Deactive' }} |
| Name | Phone | Tax number | Action |
|---|---|---|---|
| {{ $companies->name }} | {{ $companies->tax_number }} | {{ $companies->phone }} | {{ Form::open(['url' => 'clients/delete/' . $companies->id,'class' => 'pull-right']) }} {{ Form::hidden('_method', 'DELETE') }} {{ Form::submit('Delete this companies', ['class' => 'btn btn-danger btn-sm']) }} {{ Form::close() }} | @endforeach
| Full name | Phone | Email address | Job | Action |
|---|---|---|---|---|
| {{ $employees->full_name }} | {{ $employees->phone }} | {{ $employees->email }} | {{ $employees->job }} | {{ Form::open(['url' => 'employees/delete/' . $employees->id,'class' => 'pull-right']) }} {{ Form::hidden('_method', 'DELETE') }} {{ Form::submit('Delete this employee', ['class' => 'btn btn-danger btn-sm']) }} {{ Form::close() }} | @endforeach