Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for setting the Last-Modified header easily #50

Merged
merged 1 commit into from
Dec 21, 2024

Conversation

thekid
Copy link
Member

@thekid thekid commented Dec 21, 2024

Example of how this simplifies calling code:

-use web\Headers;

 $items= $this->repository->newest(20);
 return View::named('blog')
-  ->header('Last-Modified', Headers::date($items[0]['date'] ?? null))
+  ->modified($items[0]['date'] ?? null)
   ->with(['items' => $items])
 ;

Example would be to use this as part of https://developer.mozilla.org/en-US/docs/Web/HTTP/Conditional_requests

@thekid thekid added the enhancement New feature or request label Dec 21, 2024
@thekid thekid merged commit c89569c into master Dec 21, 2024
20 checks passed
@thekid thekid deleted the feature/conditional branch December 21, 2024 11:07
@thekid
Copy link
Member Author

thekid commented Dec 21, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant