mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-25 03:05:33 -05:00
* Fix for comparing delete contacts change diffKeys to diff() * Client create * Client Settings * Working on localization * Refactor DataTables * protyping blade vs pure vue * Rebuild test module * Generic notes module * Small Client Notes Module * Tests for TabMenu Trait * implements tab pills in client screen * Integrate Modules
20 lines
544 B
PHP
20 lines
544 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Module Notes</title>
|
|
|
|
{{-- Laravel Mix - CSS File --}}
|
|
{{-- <link rel="stylesheet" href="{{ mix('css/notes.css') }}"> --}}
|
|
|
|
</head>
|
|
<body>
|
|
@yield('content')
|
|
|
|
{{-- Laravel Mix - JS File --}}
|
|
{{-- <script src="{{ mix('js/notes.js') }}"></script> --}}
|
|
</body>
|
|
</html>
|