29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
@extends('layouts.admin')
|
|
@section('content')
|
|
<h1>Вознаграждения</h1>
|
|
<div class="fs-5 bg-light p-0 m-0 border border-1 rounded-4 py-3">
|
|
<table class="table m-0">
|
|
<thead>
|
|
<tr scope="col">
|
|
<th>Компания</th>
|
|
@foreach ($complexes as $complex)
|
|
<th>{{ $complex->name }}</th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
<tbody class=" ">
|
|
@foreach ($companies as $company)
|
|
<tr scope="row">
|
|
<td class="align-middle">
|
|
{{ $company->name }}
|
|
</td>
|
|
@foreach ($complexes as $complex)
|
|
<td><a href="#" class="" style="text-decoration-style: dotted;">Наследовать</a></td>
|
|
@endforeach
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@endsection
|