@extends('master.front') @section('title') {{ __('Blog') }} @endsection @section('content')

{{ __('ข่าวสารและโปรโมชั่น') }}

{{--
--}}
@foreach ($posts as $post)
@if($post->photo !== "[]" ) ... @endif
@if ($post->category_id == 1)

{{ __('โปรโมชั่น') }}

@else

{{ __('บทความ') }}

@endif
{{ Str::limit($post->title, 55) }}

{{ Str::limit(strip_tags($post->details), 120) }}

@endforeach
{{ $posts->links() }}
@endsection