@extends('admin.layouts.app') @section('header_extra') @endsection @section('content')

{{$account->account_name}} - Goals

@include('admin.account.top_action_bar') Back to Account

{{$account->domain}} - Goals

@foreach($goals as $goal) @endforeach
Goal Name Start Date End Date Status Actions
{{$goal->goal_name}} {{ \Carbon\Carbon::parse($goal->goal_start_date)->format('j F, Y') }} {{ \Carbon\Carbon::parse($goal->goal_end_date)->format('j F, Y') }} {{ $goal->goal_status == 1 ? "Active" : "Disabled" }}
@endsection @section('footer_extra') @endsection