From 7a166247301633fe4ffbbf6e73e621fca2d05b77 Mon Sep 17 00:00:00 2001 From: Usama Mahmud Date: Mon, 27 Mar 2023 13:09:30 +0600 Subject: [PATCH] fix: show blade broken localization text --- src/stubs/views/show.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stubs/views/show.stub b/src/stubs/views/show.stub index d02a5d6..6141ce0 100644 --- a/src/stubs/views/show.stub +++ b/src/stubs/views/show.stub @@ -1,7 +1,7 @@ @extends('{{layout}}') @section('template_title') - {{ ${{modelNameLowerCase}}->name ?? "{{ __('Show') {{modelTitle}}" }} + {{ ${{modelNameLowerCase}}->name ?? __('Show') . " " . __('{{modelTitle}}') }} @endsection @section('content')