@extends('layouts.app')
@section('breadcrumbs')
{!!Breadcrumbs::render('home.executive.index')!!}
@endsection
@section('content')
@if(auth()->user()->credit > 400)
Este ejecutivo es sujeto a credito.
Ejecutivo: {!!auth()->user()->full_name!!}
Credito: ${!!auth()->user()->credit!!}
@else
Este ejecutivo no es sujeto a credito
@endif
@endsection