Я пытаюсь открыть новое окно, когда кнопка нажата, но когда открылось новое окно, оно ничего не показывает .... Он должен показывать мой макет, который я сделал из файла вида лезвия ... когда я проверяю консоль, ничего не отображается ошибка
вот мой блейд-файл вида
SLACategoryCheckBoxList.blade. php
!DOCTYPE html>
<html lang="en" class="app">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>{{ __('messages.module.incidentmgt') }}</title>
<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="stylesheet" href="{{ asset('css/app.v2.css') }}" />
<link rel="stylesheet" href="{{ asset('css/popupPage.css') }}" />
<script src="{{ asset('js/BaseCommon.js') }}"></script>
<script src="{{ asset('js/app.v2.js') }}"></script>
<script src="{{ asset('js/app.js') }}"></script>
<script src="{{ asset('js/jquery-3.2.1.min.js') }}"></script>
<script>
</script>
</head>
<body>
<form role="form" method="post" action="" enctype="multipart/form-data">
<table width="100%" border="0" cellpadding="" cellspacing="0">
<tr>
<td class="header">{{ __('messages.module.refmgt') }} ›› <span class="header-selblue">{{ __('messages.module.category') }}</span></td>
</tr>
<tr>
<td class="none">
<table class="fixed_header" width="100%" cellpadding="1" cellspacing="1" border="0">
<thead>
<tr class="subheader-blue">
<td style='width: 300px;'>{{ __('messages.refcategory.abbr') }}</td>
<td style='width: 6000px;'>{{ __('messages.customer.name') }}</td>
<td style='width: 110px;'> </td>
</tr>
</thead>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>
web. php
Route::group(['prefix' => 'sla'], function () {
Route::get('sla/getCategory','SlaController@slaCategoryTreeListScreen')->name('sla.slaCategoryTreeListScreen');
});
SlaController. php
public function slaCategoryTreeListScreen() {
return view('sla.slm.SLACategoryCheckBoxList');
}
мой другой блэйд вида, который запускает кнопку
<a class="btn btn-sm btn-default pull-right" type="button" title="Search Category" onclick="openNewWindow('{{ route('sla.slaCategoryTreeListScreen') }}')" >