@extends('layouts.argo') @section('content')
@can('gpg.send') @if (auth()->user()->gpg == 'y') Nova Chave @endif @endcan

Lista de Chaves

@foreach ($chaves as $c) @endforeach
Nome E-mail Ações
{{ $c->name }} {{ $c->email }} @can('gpg.verify') @if (auth()->user()->gpg == 'y')
@csrf @method('POST')
@endif @endcan @can('gpg.remove') @if (auth()->user()->gpg == 'y')
@csrf @method('DELETE')
@endif @endcan
@endsection