@extends('master.index') @section('content')
@include('posts.partials.search')

{{ $post->title }}

{{ $post->title }}

{{ t('by') }}: {{ $post->user->fullname }} @if(auth()->check() && auth()->user()->id == $post->user->id) | {{ t('Edit') }} @endif

@if($post->tags)
    @foreach(explode(',',$post->tags) as $tag)
  • {{ $tag }}
  • @endforeach
@endif
{{ $post->type->name }} {{ $post->category->name }} @if($post->is_remote) {{ t('Remote / Anywhere') }} @else @if($post->city) {{ $post->city }}@endif @if($post->state) {{ $post->state }}@endif @if($post->country) {{ $post->country }}@endif @endif
{!! parseDown($post->description) !!} @include('posts.partials.apply')
@include('posts.partials.sidebar')
@endsection