如何从数据库Laravel在日历视图中显示日期

时间:2019-03-28 10:09:04

标签: php laravel

我有请假申请,如果具有级别管理员的用户可以在日历模式下查看谁要请假,则需要

这是用户表

id |   nama   |     email       |  level
1      Johan      johan.com         user
2     Michael    michael.com       manager  
3      Lorem      lorem.com       supervisor
4      Ipsum      ipsum.com     user 
5      Dolor      dolor.com     user

这是请假表

id |   nama   |     email       |  leave_start  |   leave_end
1      Johan      johan.com         2019-04-01     2019-04-05
5      Dolor      dolor.com     2019-04-08     2019-04-12

因此经理可以查看请假表中的所有数据,以查看谁在休假。我尝试在tutorial之后使用fullcalendar,但查看日历仍然出现错误。 错误是:

  

传递给Symfony \ Component \ HttpFoundation \ RedirectResponse :: __ construct()的参数2必须为整数类型,数组在C:\ x \ htdocs \ leave \ vendor \ laravel \ framework \ src \ Illuminate \ Routing中调用\ Redirector.php,第203行

如何解决这些问题并以日历模式显示数据?

这是来自redirectresponse.php错误的代码

public function __construct(?string $url, int $status = 302, array $headers = []) 
{ 
    parent::__construct('', $status, $headers);
    $this->setTargetUrl($url); 

    if (!$this->isRedirect()) 
    {
        throw new \InvalidArgumentException(sprintf('The HTTP status code is not a redirect ("%s" given).', $status)); 
    } 

    if (301 == $status && !array_key_exists('cache-control', $headers)) 
    { 
        $this->headers->remove('cache-control'); 
    } 
}

0 个答案:

没有答案