refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
18
resources/views/people/food-preferences/index.blade.php
Normal file
18
resources/views/people/food-preferences/index.blade.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<div class="sidebar-box">
|
||||
|
||||
<div class="sidebar-box-title">
|
||||
<h3>{{ trans('people.food_preferences_title') }}</h3>
|
||||
</div>
|
||||
|
||||
<p class="sidebar-box-paragraph">
|
||||
|
||||
@if (is_null($contact->food_preferences))
|
||||
<a href="{{ route('people.food.index', $contact) }}">{{ trans('app.add') }}</a>
|
||||
@else
|
||||
{{ $contact->food_preferences }}
|
||||
<a href="{{ route('people.food.index', $contact) }}" class="action-link">{{ trans('app.edit') }}</a>
|
||||
@endif
|
||||
|
||||
</p>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user