@extends('layouts.app')
@section('page-header')
@endsection
@section('htmlheader_title')
View Sites
@endsection
@section('modal')
@foreach($sites as $site)
Name |
Organization |
Phone |
Email |
Address |
City |
Zip |
@foreach($site->contacts as $contact)
{{ $contact->name}} |
{{ $contact->organization}} |
{{ $contact->tel}} |
{{ $contact->email}} |
{{ $contact->add}} |
{{ $contact->city}} |
{{ $contact->zip}} |
@endforeach
Name |
Organization |
Phone |
Email |
Address |
City |
Zip |
Note |
Created By |
Creation Date |
@foreach($site->notes as $note)
{{ $note->note}} |
{{$note->creator->name}} |
{{ date_format($note->created_at, 'n/j/y g:i A')}} |
@endforeach
Note |
Created By |
Creation Date |
@endforeach
@endsection
@section('contentheader_title')
View Sites
@endsection
@section('main-content')
Name |
Type |
Latitude |
Longitude |
Contacts |
Notes |
@foreach($sites as $site)
{{ $site->name}} |
{{ $site->type}} |
{{ $site->latitude}} |
{{ $site->longitude}} |
|
|
@endforeach
Name |
Type |
Latitude |
Longitude |
Contacts |
Notes |
@endsection
@section('page-scripts')
{{ asset('/plugins/jQuery/jQuery-2.1.4.min.js') }}
@endsection