Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
devajmeireles committed Mar 8, 2024
1 parent d579980 commit 4d73e21
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,10 @@ class="h-full antialiased"
<dl class="grid max-w-xl grid-cols-1 gap-x-8 gap-y-16 lg:max-w-none lg:grid-cols-1">
<div class="flex flex-col">
<dd class="mt-4 text-base leading-7 text-gray-300 space-y-2">
<x-date label="Normal" name="normal" :value="now()->subMonth()->format('Y-m-d')" format="DD, MMMM, YYYY" />
<x-date label="Range" range name="range" :value="[now()->format('Y-m-d'), now()->addWeek()->format('Y-m-d')]" format="DD, MMMM, YYYY" />
<x-date label="Multiple" multiple name="multiple" :value="[now()->format('Y-m-d'), now()->addDay()->format('Y-m-d')]" format="DD, MMMM, YYYY" />
@php($now = now()->format('Y-m-d'))
<x-date label="Normal" name="normal" :value="$now" format="DD, MMMM, YYYY" />
<x-date label="Range" range name="range" :value="[$now, now()->addWeek()->format('Y-m-d')]" format="DD, MMMM, YYYY" />
<x-date label="Multiple" multiple name="multiple" :value="[$now, now()->addDay()->format('Y-m-d')]" format="DD, MMMM, YYYY" />
</dd>
</div>
</dl>
Expand Down

0 comments on commit 4d73e21

Please sign in to comment.