fixed notification import failed issue..

This commit is contained in:
Cüneyt Şentürk 2021-06-25 11:39:49 +03:00
parent bf107678c1
commit d816c00a59
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@
<tbody> <tbody>
@foreach ($notifications as $notification) @foreach ($notifications as $notification)
<tr class="row align-items-center border-top-1"> <tr class="row align-items-center border-top-1">
<td class="col-xs-8 col-sm-10 col-md-10 col-lg-11 col-xl-11 text-left"> <td class="col-xs-8 col-sm-10 col-md-10 col-lg-11 col-xl-11 text-left text-wrap">
@if (empty($notification->message)) @if (empty($notification->message))
{!! trans('notifications.messages.export', [ {!! trans('notifications.messages.export', [
'type' => $notification->translation, 'type' => $notification->translation,

View File

@ -24,8 +24,8 @@
<tbody> <tbody>
@foreach ($notifications as $notification) @foreach ($notifications as $notification)
<tr class="row align-items-center border-top-1"> <tr class="row align-items-center border-top-1">
<td class="col-xs-8 col-sm-10 col-md-10 col-lg-11 col-xl-11 text-left"> <td class="col-xs-8 col-sm-10 col-md-10 col-lg-11 col-xl-11 text-left text-wrap">
@if (empty($notification->message)) @if (empty($notification->errors))
{!! trans('notifications.messages.import', [ {!! trans('notifications.messages.import', [
'type' => $notification->translation, 'type' => $notification->translation,
'count' => $notification->total_rows 'count' => $notification->total_rows