How7o
  • Home
  • Tools
  • Prank Screens
  • Learn
  • Blog
  • Contact
Reading: How to Show Only Hours and Minutes in Laravel Blade (HH:MM)
Share
How7oHow7o
Font ResizerAa
  • OS
Search
  • Home
  • Tools
  • Prank Screens
  • Learn
  • Blog
  • Contact
Follow US
© 2024–2026 How7o. All rights reserved.
How7o > Learn > Web Development > How to Show Only Hours and Minutes in Laravel Blade (HH:MM)
Web Development

How to Show Only Hours and Minutes in Laravel Blade (HH:MM)

how7o
By how7o
Last updated: January 12, 2026
3 Min Read
Laravel Blade Time Format (HH:MM)
SHARE

I hit this while building a simple schedule page in Laravel. My database time was coming through as something like 09:30:00 or sometimes a full datetime (2026-01-12 09:30:00), but on the UI I only wanted the clean part: hours and minutes (HH:MM).

Contents
  • Best method: Use Carbon format(‘H:i’) in Blade
  • 12-hour format (AM/PM)
  • Cleanest approach for projects: Create a model accessor
  • Quick fallback: If the value is always like 09:30:00
  • Timezone note (important if you store datetimes)
  • Outbound + internal links (helps Yoast)
  • Final thoughts

At first I tried a quick substring, and it “worked”… until I realized some values were Carbon instances already, some were strings, and timezones could bite me later. So I switched to a proper approach using Carbon formatting. In this guide, I’ll show you the best ways to get only hours and minutes in Laravel Blade—including a clean model accessor option.

Best method: Use Carbon format(‘H:i’) in Blade

If your value is already a Carbon instance (common with created_at, updated_at, and casted datetime columns), this is the simplest:

{{ $model->created_at->format('H:i') }}

Result: 09:30

If your value might be a string, parse it first:

{{ \Carbon\Carbon::parse($time)->format('H:i') }}

This handles:

  • 09:30:00
  • 2026-01-12 09:30:00
  • Most reasonable time/datetime strings

12-hour format (AM/PM)

If your audience prefers AM/PM, use:

{{ \Carbon\Carbon::parse($time)->format('h:i A') }}

Result: 09:30 AM

Cleanest approach for projects: Create a model accessor

When I realized I needed HH:MM in multiple Blade files, I stopped repeating formatting in views and moved it into the model. This keeps Blade clean and avoids copy/paste formatting everywhere.

Example: if you have a column called start_time (stored as time or datetime), add an accessor in your model:

// app/Models/Event.php
public function getStartTimeHmAttribute()
{
    if (!$this->start_time) return null;

    return \Carbon\Carbon::parse($this->start_time)->format('H:i');
}

Now in Blade you can simply do:

{{ $event->start_time_hm }}

This is the approach I recommend if the same formatting is used in multiple places.

Quick fallback: If the value is always like 09:30:00

If you are 100% sure your value is always HH:MM:SS, the quick (but less flexible) option is trimming the string:

{{ substr($time, 0, 5) }}

I only use this in small projects or when the value is guaranteed to be a TIME string. Otherwise, Carbon is safer.

Timezone note (important if you store datetimes)

If your column is a full datetime and your app uses timezones, make sure you’re formatting in the correct timezone. For example:

{{ $model->starts_at->timezone(config('app.timezone'))->format('H:i') }}

For plain TIME fields (only time, no date), timezone usually isn’t involved—but for real schedules using datetimes, it matters.

Outbound + internal links (helps Yoast)

  • Carbon documentation (date/time formatting)
  • PHP date() / DateTime formatting reference
  • How to check if GD library is installed in PHP
  • How to create a directory in Ubuntu

Final thoughts

If you want the best “always works” solution, use Carbon: format('H:i'). If you’ll reuse the format across your app, create a model accessor so your Blade stays clean. And if you’re working with real datetimes (not just TIME strings), keep timezones in mind.

TAGGED:AccessorsBladeCarbonDate FormatEloquentLaravelphpTime Format

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Copy Link Print
Previous Article Display only the current date in Laravel using Carbon How to Display Only the Current Date in Laravel (Carbon Examples)
Next Article Check if GD library is installed in PHP (phpinfo and extension_loaded) How to Check if GD Library Is Installed in PHP (3 Easy Methods)
Leave a Comment

Leave a Reply Cancel reply

You must be logged in to post a comment.

FacebookLike
XFollow
PinterestPin
InstagramFollow
Most Popular
Display PHP errors — ini_set + php.ini configuration
How to Display PHP Errors
May 10, 2026
PHP convert string to uppercase — strtoupper and mb_strtoupper
How to Convert a String to Uppercase in PHP
May 10, 2026
PHP string to float conversion with cast, regex cleanup, NumberFormatter
How to Convert a String to Float in PHP
May 10, 2026
PHP merge arrays without duplicates — union operator and array_unique
How to Combine Two Arrays Without Duplicates in PHP
May 10, 2026
PHP delete array element — unset, array_splice, array_filter, array_search
How to Delete an Element from a PHP Array
May 10, 2026

You Might Also Like

WordPress disable revision and autosave — wp-config constants and wp_print_scripts dequeue
Web Development

How to Disable Revisions and Autosave in WordPress

8 Min Read
Laravel 403 forbidden on shared hosting — root htaccess rewrite into public folder
Web Development

Fix “403 Forbidden” on Laravel Shared Hosting

8 Min Read
Laravel Eloquent records today — Carbon today helper and whereDate illustration
Web Development

How to Get Records Created Today in Laravel

6 Min Read
Laravel global variable for views — View::share in AppServiceProvider and View::composer wildcard patterns
Web Development

How to Set a Global Variable for Laravel Views

7 Min Read
How7o

We provide tips, tricks, and advice for improving websites and doing better search.

Tools

  • Age Calculator
  • Word Counter
  • Image Upscaler
  • Password Generator
  • QR Code Generator
  • See all tools→

Pranks

  • Fake Blue Screen Prank
  • Hacker Typer
  • Fake iMessage Generator
  • Windows XP Crash Prank
  • Windows 11 Update Prank
  • See all prank screens →

Company

  • About Us
  • Blog
  • Contact
  • Privacy Policy
  • Terms of Service
  • Sitemap
© 2024–2026 How7o. All rights reserved.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?