@extends('website.layout.main') @section('content')
@forelse($projects as $project)
{{ $project->title }}
@if($project->partner)

{{ $project->partner }}

@endif

{{$project->title}}

@if($project->introduction)

{!! Str::limit($project->introduction, 150) !!}

@endif @if($project->phase)

{{ $project->phase }}

@endif
@empty

No projects available at the moment.

@endforelse
@endsection