@extends('layouts.app')
@section('title', 'Plugin branding')
@section('page_title', 'WP plugin branding')
@section('content')
@if(session('status'))
{{ session('status') }}
@endif
@if($errors->any())
@foreach($errors->all() as $e)
{{ $e }}
@endforeach
@endif
- Plugin file header (name, description, author, version).
- Submenu item under WooCommerce ({{ $branding['icon_emoji'] }} {{ $branding['name'] }}).
- Primary button colours + accent border in plugin admin pages.
- REST endpoint namespace:
/wp-json/{{ $branding['slug'] }}/v1/shipment-update.
- Support email shown on every plugin admin screen.
- Public branding endpoint that the plugin queries on activation:
{{ route('plugin.branding') }}.
@endsection