@extends('layouts.app') @section('title', $guarantee->name) @section('content') @if($guarantee->is_active) {{ __('config.active') }} @else {{ __('config.inactive') }} @endif {{ __('app.edit') }} {{ __('app.back') }}
{{ $guarantee->code }} {{ $guarantee->name_ar }} {{ $guarantee->name_en }} {{ $guarantee->type ? __('config.guarantees.types.' . $guarantee->type) : '' }} {{ $guarantee->sort_order }} {{ $guarantee->description }}
    @forelse($guarantee->products as $p)
  • @can('config.finance_products') {{ $p->name }} @else {{ $p->name }} @endcan {{ $p->code }} @if($p->pivot->is_required) {{ __('app.required') }} @else {{ __('app.optional') }} @endif
  • @empty
  • {{ __('app.no_related') }}
  • @endforelse
@endsection