CRUD: Fix show page heading when model doesn't have a title

This commit is contained in:
Riyyi
2021-08-25 23:28:21 +02:00
parent 2fb4481876
commit f49f615238
+1 -1
View File
@@ -1,7 +1,7 @@
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<div class="content shadow p-4 mb-4"> <div class="content shadow p-4 mb-4">
<h3><?= _exists([$this->model->title]) ? ($this->escape)($this->model->title) : 'Show'; ?></h3> <h3><?= property_exists($this->model, 'title') ? ($this->escape)($this->model->title) : 'Show'; ?></h3>
<table class="table table-bordered table-striped"> <table class="table table-bordered table-striped">
<thead> <thead>