Skip to content

Commit

Permalink
fix(global): version
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Apr 11, 2023
1 parent 9ae7a10 commit 741ceaf
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 8 deletions.
4 changes: 2 additions & 2 deletions resources/views/bank/bank.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<input type="text" name="name" id="name" value="{{ $bank->name }}" required="required" class="form-control">
</div>
<div class="col">
<label for="name">{{ __('Phone') }}</label>
<label for="phone">{{ __('Phone') }}</label>
<input type="text" name="phone" id="phone" value="{{ $bank->phone }}" maxlength="15" class="form-control">
</div>
</div>
Expand All @@ -30,7 +30,7 @@
</div>
<div class="row">
<div class="col">
@include('components.country')
@include('components.country', ['country_id' => $bank->country_id])
</div>
</div>
<div class="row">
Expand Down
34 changes: 29 additions & 5 deletions resources/views/lead_customer/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
<div>{{ __('Business name') }}:</div>
<strong>{{ $item->business_name }}</strong>
</div>
<div class="col-md-1">
<a class="btn btn-warning" href="{{ url("/$url/update/$item->id") }}">
<i class="las la-pen"></i> {{ __('Edit') }}
</a>
</div>
</div>
<div class="row">
<div class="col-md-2">
<div>{{ __('Phone') }}:</div>
@isset($item->phone)
Expand Down Expand Up @@ -48,12 +55,25 @@
<div>{{ __('Identity number') }}:</div>
<strong>{{ $item->vat }}</strong>
</div>
<div class="col-md-1">
<a class="btn btn-warning" href="{{ url("/$url/update/$item->id") }}">
<i class="las la-pen"></i> {{ __('Edit') }}
</a>
</div><!--./row-->
<div class="row">
<div class="col-md-2">
<div>{{ __('Province') }}:</div>
<strong>{{ $item->province }}</strong>
</div>
</div>
<div class="col-md-2">
<div>{{ __('City') }}:</div>
<strong>{{ $item->city }}</strong>
</div>
<div class="col-md-2">
<div>{{ __('Street') }}:</div>
<strong>{{ $item->street }}</strong>
</div>
<div class="col-md-2">
<div>{{ __('Zipcode') }}:</div>
<strong>{{ $item->zipcode }}</strong>
</div>
</div><!--./row-->
</div>
</div>

Expand All @@ -71,6 +91,7 @@
<tr>
<th scope="col">#</th>
<th scope="col">{{ __('Product') }}</th>
<th scope="col">SKU</th>
</tr>
</thead>
<tbody>
Expand All @@ -87,6 +108,7 @@
@endif
{{ $item_detail->product->name }}
</td>
<td>{{ $item_detail->product->sku }}</td>
</tr>
@endisset
@endforeach
Expand Down Expand Up @@ -157,6 +179,7 @@ class="btn btn-sm btn-primary text-white">
<tr>
<th scope="col">#</th>
<th scope="col">{{ __('First name') }}</th>
<th scope="col">{{ __('Last name') }}</th>
<th scope="col">{{ __('Phone') }}</th>
<th scope="col">{{ __('Mobile') }}</th>
<th scope="col">Email</th>
Expand All @@ -168,6 +191,7 @@ class="btn btn-sm btn-primary text-white">
<tr>
<th scope="row">{{ $contact->id }}</th>
<td>{{ $contact->first_name }}</td>
<td>{{ $contact->last_name }}</td>
<td>
<a href="tel:{{ $contact->phone }}">{{ $contact->phone }}</a>
</td>
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

const APP_VERSION = '2.2.22';
const APP_VERSION = '2.3.1';

0 comments on commit 741ceaf

Please sign in to comment.