소스 검색

Update NewroomController, update title length limit from 25 to 40

Daniel Supernault 5 년 전
부모
커밋
c568d54893
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Http/Controllers/NewsroomController.php

+ 1 - 1
app/Http/Controllers/NewsroomController.php

@@ -65,7 +65,7 @@ class NewsroomController extends Controller
 			->map(function($post) {
 				return [
 					'id' => $post->id,
-					'title' => Str::limit($post->title, 25),
+					'title' => Str::limit($post->title, 40),
 					'summary' => $post->summary,
 					'url' => $post->show_link ? $post->permalink() : null,
 					'published_at' => $post->published_at->format('F m, Y')