Date Filters in Laravel 10

Поделиться
HTML-код
  • Опубликовано: 23 сен 2024
  • In this tutorial, you'll learn how to build a dynamic date filter for your Laravel application using Bootstrap. We'll start by creating a dropdown menu in the view that allows users to select a date range filter, such as "Today", "Yesterday", "This Week", "Last Week", "This Month", "Last Month", "This Year" and "Last Year".
    Next, we'll write the necessary controller code to handle the selected filter options and retrieve the relevant posts from the database using Laravel's Eloquent query builder. We'll use the Carbon library to manipulate and compare dates in the controller, and pass the filtered posts to the view to display them in a table.
    Source code: github.com/moh...
    #laravel #dateFilters #dateFiltersLaravel

Комментарии • 11

  • @wegazicomputing2872
    @wegazicomputing2872 10 месяцев назад

    You solved my problem, thank you.

  • @cloudcodesolutions
    @cloudcodesolutions Год назад +1

    Thanks Bro

  • @laravelearner
    @laravelearner Год назад

    Thank You :)

  • @TrikNgonlen
    @TrikNgonlen Год назад +3

    would you make a Data Range Filter version, please?

  • @lockhartdcs
    @lockhartdcs 7 месяцев назад

    How did you configure your Visual Studio explorer tab to show custom icons like this?

    • @BluebirdTech
      @BluebirdTech  7 месяцев назад +1

      It's an extension "Material Icon Theme".

  • @ronakfiza9732
    @ronakfiza9732 Год назад +1

    How to fetch dynamically financial year wise data like 1april2022 to31st March 2023 to show in graph
    Can you give me query please solve my problem

    • @BluebirdTech
      @BluebirdTech  Год назад

      $users = User::whereDate('created_at','>=',$start_date)
      ->whereDate('created_at','

  • @linnhtetaung5923
    @linnhtetaung5923 Год назад +1

    bro github link please