Laravel – How to display "view" with XML file?
Oh, how ridiculously I formulated the question)) I’ll try in more detail. I have a route: Route::get('/parsers/settings/{id}', [AdminParserController::class, 'settings']) ->where('id', '[0-9]+') ->name('parsers::settings'); Then I select the required element from the XML file and convert it to a string: $xml =…