mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-29 16:25:33 -05:00
* Client login, reset and update password page * Client dashboard, sidebar, PortalComposer.php * wip * Personal page & update for details * Invoices, paying & pagination.blade.php * Invoices, recurring invoice & buttons * Payments, link component * Payment methods * Breadcrums, clean up & wrap up * Remove format_date() method to formatDate on object * Payments - $this->render is now proxy for render() - Removed logic from Controller.php to ClientPortal.php - Added MakesDates to ClientGatewayToken.php - StripePaymentDriver.php now returns correct views - Refactor of adding new payment method - Ignoring all local builds for public/js/clients/* * Signature, wip * Fix "Pay now" on single invoice * Payments: - Added ProcessInvoicesInBulk request class - Refactor InvoiceController::bulk() - Displaying terms & payments - New signature.blade.php - Removed comment from webpack.mix.js * Quotes: - Refactor ProcessInvoicesInBulk.php to ProcessInvoicesInBulkRequest.php - Add new 'Quotes' field inside of PortalComposer.php - Added MakesDates to Quote.php - Added Quote::badgeForStatus() - Cleanup payment.blade.php - Quote showing and approving - New resource 'quotes' in client.php - New image for quotes, align-left.svg * Credits: - New 'credits' resource in client.php - Fixes for client.php typo * Breadcrumbs: - Quotes - Credits * Placeholder for translations. * Restore whereIn & client scope Co-authored-by: David Bomba <turbo124@gmail.com>
32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<div
|
|
class="h-screen flex overflow-hidden bg-gray-100"
|
|
x-data="{ sidebarOpen: false }"
|
|
@keydown.window.escape="sidebarOpen = false">
|
|
|
|
<!-- Off-canvas menu for mobile -->
|
|
@include('portal.ninja2020.components.general.sidebar.mobile')
|
|
|
|
<!-- Static sidebar for desktop -->
|
|
@include('portal.ninja2020.components.general.sidebar.desktop')
|
|
|
|
<div class="flex flex-col w-0 flex-1 overflow-hidden">
|
|
@include('portal.ninja2020.components.general.sidebar.header')
|
|
<main
|
|
class="flex-1 relative z-0 overflow-y-auto py-6 focus:outline-none"
|
|
tabindex="0" x-data
|
|
x-init="$el.focus()">
|
|
|
|
<div class="mx-auto px-4 sm:px-6 md:px-8">
|
|
@yield('header')
|
|
</div>
|
|
|
|
<div class="mx-auto px-4 sm:px-6 md:px-8">
|
|
<div class="py-4">
|
|
@includeWhen(session()->has('success'), 'portal.ninja2020.components.general.messages.success')
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|