Transaction show contact show and contact pages styling..

This commit is contained in:
Cüneyt Şentürk
2021-06-30 17:59:43 +03:00
parent 4a18e50f88
commit fd1f6b4821
4 changed files with 49 additions and 12 deletions

View File

@ -39,7 +39,10 @@
<strong>
<span class="float-left long-texts mwpx-300 transaction-head-text">
{{ $transaction->contact->name }}
<a href="{{ route($routeContactShow, $transaction->contact->id) }}">
{{ $transaction->contact->name }}
</a>
</span>
</strong>
<br><br>
@ -78,4 +81,4 @@
</div>
@endif
@stack('header_paid_at_end')
</div>
</div>

View File

@ -245,7 +245,7 @@
<tbody>
@foreach($transactions as $item)
<tr class="row align-items-center border-top-1 tr-py">
<td class="col-xs-6 col-sm-2">@date($item->paid_at)</td>
<td class="col-xs-6 col-sm-2"><a href="{{ route('payments.show', $item->id) }}">@date($item->paid_at)</a></td>
<td class="col-xs-6 col-sm-2 text-right">@money($item->amount, $item->currency_code, true)</td>
<td class="col-sm-4 d-none d-sm-block">{{ $item->category->name }}</td>
<td class="col-sm-4 d-none d-sm-block">{{ $item->account->name }}</td>

View File

@ -38,7 +38,7 @@
@stack('revenue_button_end')
<div class="dropdown-divider"></div>
@stack('delete_button_start')
@can('delete-sales-customers')
{!! Form::deleteLink($customer, 'customers.destroy') !!}
@ -254,7 +254,7 @@
<tbody>
@foreach($transactions as $item)
<tr class="row align-items-center border-top-1 tr-py">
<td class="col-xs-6 col-sm-2">@date($item->paid_at)</td>
<td class="col-xs-6 col-sm-2"><a href="{{ route('revenues.show', $item->id) }}">@date($item->paid_at)</a></td>
<td class="col-xs-6 col-sm-2 text-right">@money($item->amount, $item->currency_code, true)</td>
<td class="col-sm-4 d-none d-sm-block">{{ $item->category->name }}</td>
<td class="col-sm-4 d-none d-sm-block">{{ $item->account->name }}</td>