change the date format in laravel view page

前端 未结 11 2101
-上瘾入骨i
-上瘾入骨i 2020-12-02 06:23

I want to change the date format which is fetched from database. now I got 2016-10-01{{$user->from_date}} .I want to change the format \'d-m-y\' in laravel

11条回答
  •  失恋的感觉
    2020-12-02 06:46

    In Laravel you can add a function inside app/Helper/helper.php like

    function formatDate($date = '', $format = 'Y-m-d'){
        if($date == '' || $date == null)
            return;
    
        return date($format,strtotime($date));
    }
    

    And call this function on any controller like this

    $start_date = formatDate($start_date,'Y-m-d');
    

    Hope it helps!

提交回复
热议问题