class test
{
public $result;
function funpage ()
{
$this->result = '111';
}
}
class send
{
function fungallery ()
{
$test = new Test();
$test->funpage();
if($test->result == '111) {
echo 'Информация верна'; }
}
}
public function readNotifications() {
if(Auth::guest()) return '-1';
foreach(Notification::where('user_id', Auth::user()->id)->where('read_status', 0)->get() as $notification) {
$notification->read_status = 1;
$notification->save();
}
return '1';
}
да всё с этим разобрался теперь подскажите как вывести из post запроса данные в глобальную переменную этого даже не нашел в документации нашел только через обращение к классу