change date format in blade laravel with carbon code example
Example 1: format date laravel timestamp view
date('d-m-Y', strtotime($user->from_date));
/**
or
**/
date_format($user->from_date,'D M Y')
Example 2: format date laravel timestamp view
date('d-m-Y', strtotime($user->from_date));