@extends('layouts.admin')
@section('title', $project->name.' — '.config('app.name'))
@section('page_title', $project->name)
@section('breadcrumbs')
Custom projects
#{{ $project->id }}
@endsection
@section('content')
- Status
- {{ $project->status }}
- Country
- {{ $project->country ?: '—' }}
- Categories
- {{ $project->categories->pluck('name')->join(', ') ?: '—' }}
- Customer
- {{ $project->customer ?: '—' }}
- Business partner
- {{ $project->business_partner ?: '—' }}
- Keywords
- {{ $project->keywords ?: '—' }}
- Description
- {{ $project->description ?: '—' }}
{!! $project->content !!}
@endsection