@extends('layouts.main') @section('title', 'Nomadic-People') @section('content')

{!! __('people.heading') !!}

{!! __('people.desc') !!}

@if($crews)
{{__('Specialist')}}
@foreach($crews as $crew)
{{$crew->name}}
@endforeach @endif @if($locations)
Locations
@foreach($locations as $loc)
{{$loc->location}}
@endforeach @endif
@if($resources)
@foreach($resources as $res)
{{$res->fname}} {{$res->lname}}

{{$res->name}}

@endforeach
@endif
@endsection