@extends('layouts.admin') @section('page-title') {{__('Manage Goals')}} @endsection @section('breadcrumb')
{{__('Name')}} | {{__('Type')}} | {{__('From')}} | {{__('To')}} | {{__('Amount')}} | {{__('Is Dashboard Display')}} | {{__('Action')}} |
---|---|---|---|---|---|---|
{{ $gola->name }} | {{ __(\App\Models\Goal::$goalType[$gola->type]) }} | {{ $gola->from }} | {{ $gola->to }} | {{ \Auth::user()->priceFormat($gola->amount) }} | {{$gola->is_display==1 ? __('Yes') :__('No')}} | @can('edit goal') @endcan @can('delete goal') @endcan |