@php($title = $company->name)
@extends('layouts.admin')
@section('content')
Редактировать данные агентства
| ФИО
| Когда назначен
|
|
@foreach ($companyAgentsRelation as $companyAgent)
|
{{ $companyAgent->user->name }}
|
{{ $companyAgent->created_at->diffForHumans() }}
|
|
@endforeach
@livewire('company.agent.create', ['containerId' => 'createAgentModal', 'companyId' => $company->id])
@endsection