@extends('layouts.app')
@section('title', trans('settings.goal_title'))
@section('content')
@php $u = auth()->user(); @endphp
@include('layouts.partials.employee-files')
@php
$isBelongsTo = true;
if (request()->has('user_id')) {
$isBelongsTo = request()->get('user_id') == request()->user()->id;
}
@endphp
{{ trans('forms.goal') }}
{{ __("forms.these_goals_need_to_be_completed") }}
@include('goal::goal.progress', [
'total' => $total,
'completedTotal' => $completedTotal
])
@stop
@section('panel-content')
@include('goal::goal.form')
@stop
@section('footer-script')
@stop