APP_DEBUG is set to true while APP_ENV is not local

This could make your application vulnerable to remote execution. Read more about Ignition security.

/home/bshra/bs/
TypeError
count(): Argument #1 ($value) must be of type Countable|array, null given (View: /home/bshra/bs/resources/views/themes/bushra/pages/post.blade.php)
    • 61
      resources/views/themes/bushra/pages/post.blade.php
      :118
    • 1
      /home/bshra/public_html/index.php
      :50
::require
resources/views/themes/bushra/pages/post.blade.php:118

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

$bodyprint=preg_match_all('/{[^}]*}/',$introtext,$out);

 

if(!empty($out[0])){

for($e=0;$e<count($out[0]);$e++){

$introtext=str_replace($out[0][$e],$imagesfetcharray[$e],$introtext) ;

}

}

 

}

$personpic=[];$Ifwriter='';$authorname='';$authorid='';

$authorLd='';

// dd($post->authors);

if($post->authors->count()>0){

foreach($post->authors as $a)

$authors[]=$a;

}

if(count($authors)>1){

$Ifwriter='<div class="d-flex flex-wrap my-3 mx-2"><span class="ms-3 alert alert-warning text-dark">'.__('messages.workteam').' : </span>';

$s=0;

$authorLd="[";

foreach($authors as $author){

$s++;

$authorLd.='{"@type": "Person","familyName": "'.$author->name.'","givenName": "'.$author->name.'","name": "'.$author->name.'","url":"https://'.parse_url(url('/'))['host'].'/author/' . $author->user_id . '/'.$author->app_id.'"}';

// $personpic[]=$author->pic!=''?'<div class="person rounded" style="background:url(https://annabaa.org/aarticles/' . str_replace('../','',$post->author->pic).')center center /cover"></div>':'';

$authType=$author->pivot->type!=''?$author->pivot->type.' : ':'';

 

$Ifwriter .= '<a class="font-weight-bold ms-3 text-dark" href="/author/' . $author->user_id. '">

<span class="pl-2" itemprop="author" itemscope itemtype="http://schema.org/Person"><i class="fa fa-user"></i>

<span itemprop="name">'.$authType.$author->name.'</span></span></a>';

if($s<$authors->count()){

$authorLd.=',';