charlie

5215 经验值

$today = Carbon::today();
$tomorrow = Carbon::tomorrow();
User::whereBetween('created_at', $today, $tomorrow)->get();

可能可以这么写,可以试一下

laravel 在实现自己发表的文章只能自己修改的功能时,怎么通过middleware实现?

public function handle($request, Closure $next)
{
}

laravel如何实现记录导航栏的状态?
比如我在问答社区里面无论点击哪个问题的时候,导航栏的问答社区总是active的。
不知道有没有好的解决方法