@extends('sendportal::layouts.app') @section('heading') {{ __('Workspaces') }} @endsection @section('content')
{{ __('Name') }}
|
{{ __('Owner') }} | |
---|---|---|
{{ $workspace->name }}
|
@if (auth()->user()->id === $workspace->owner_id) You @else {{ $workspace->owner->name }} @endif | @if (auth()->user()->ownsWorkspace($workspace)) {{ __('Edit') }} @endif |
{{ __('Workspace') }} | {{ __('Invited') }} | {{ __('Expires') }} | |
---|---|---|---|
{{ $invitation->workspace->name }} | {{ $invitation->created_at->format('Y-m-d') }} | {{ $invitation->expires_at->format('Y-m-d') }} | {{-- Accept --}} {{-- Reject --}} |