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
{{$user->from_date}}
Easy to use date in blade template use Carbon that way
{{ \Carbon\Carbon::parse($user->from_date)->format('d/m/Y')}}