@extends('layouts.site') @section('title', 'Blog — pcfy.in') @section('meta_description', 'Tips, guides and news about refurbished hardware from the pcfy.in team.') @section('screen_label', 'Blog') @push('styles') @endpush @section('content')
Knowledge base

pcfy.in Blog

Guides, tips and news about refurbished hardware for IT buyers.

{{-- Featured post --}} @if($featured) @endif {{-- Post grid --}} @if($posts->isEmpty())

No posts yet

Check back soon for articles from our team.

@else
@foreach($posts as $post)
@if($post->getFirstMediaUrl('featured')) {{ $post->title }} @else
@endif
@if($post->category) {{ $post->category->name }} @endif {{ $post->title }} @if($post->excerpt)

{{ Str::limit($post->excerpt, 100) }}

@endif
@endforeach
@if($posts->hasPages())
{{ $posts->links() }}
@endif @endif
{{-- Sidebar --}}
@endsection