trypost/app/Mail/WorkspaceInvite.php
Paulo Castellano 2da15df96c feat: introduce Account entity as billing owner and refactor architecture
- Create Account model as Cashier Billable entity (stripe, plan, subscription)
- Account owns workspaces and has an owner_id (User)
- User belongs to one Account via account_id
- Workspace belongs to Account via account_id, no longer has billing fields
- Remove Brand model entirely (workspaces serve as grouping)
- Rename brand_limit to workspace_limit in plans
- Workspace roles simplified: admin/member/viewer (owner via Account)
- Invites now belong to Account with workspaces JSON array
- Pennant features scope changed from Workspace to Account
- EnsureSubscribed middleware checks Account subscription
- All controllers updated: BillingController, OnboardingController,
  WorkspaceInviteController, SocialController, StripeEventListener
- Frontend: extract GoogleAuthButton component, create WorkspaceRole
  enum for type-safe role checks, fix all views for new architecture
- All 1101 tests passing
2026-04-14 22:22:04 -03:00

47 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Mail;
use App\Models\Invite;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class WorkspaceInvite extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;
public function __construct(
public Invite $invite
) {}
public function envelope(): Envelope
{
return new Envelope(
subject: "You've been invited to join {$this->invite->account->name}",
);
}
public function content(): Content
{
return new Content(
view: 'mail.workspace-invite',
with: [
'title' => "You've been invited to join {$this->invite->account->name}",
'previewText' => "You've been invited to join {$this->invite->account->name}",
'invite' => $this->invite,
'url' => route('app.invites.show', $this->invite),
],
);
}
public function attachments(): array
{
return [];
}
}