Deploy Ladill Transfer / deploy (push) Successful in 29s
Transfers now lists all shares with filters and pagination; Files becomes a selectable cloud view with download, share, delete, move, and open-in-email actions. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
513 B
PHP
14 lines
513 B
PHP
<x-user-layout>
|
|
<x-slot name="title">Search</x-slot>
|
|
|
|
@include('partials.search-screen', [
|
|
'query' => $query,
|
|
'results' => $results,
|
|
'backUrl' => route('transfer.dashboard'),
|
|
'searchUrl' => route('transfer.search'),
|
|
'heading' => 'Find transfers and files',
|
|
'placeholder' => 'Search transfers, file names, recipients…',
|
|
'emptyHint' => 'Use at least 2 characters to search transfer titles, file names, or recipient emails.',
|
|
])
|
|
</x-user-layout>
|