Controller с которого все наследуется
public $new_comments_moderate;
public function __construct()
{
$this->categories = $categories;
$this->companies_modal = $companies_modal;
$comments_count = CompaniesComment::query()
->where('status', 0)
->count();
$this->new_comments_moderate = $comments_count;
}
Layouts
{{$new_comments_moderate}}
как можно сделать переменную ($new_comments_moderate) доступной в layouts чтобы не передавать в каждую view вот так
return view('admin.dashboard')->with([
'new_comments_moderate' => $this->new_comments_moderate
]);