Posts by Marcel • 332 points
11 posts
-
0
votes1
answer42
viewsQ: Controller show method intercepting route without parameter
Hello, in my system I have a model Photogallerycategory that has a self relationship. To make my life easier in the create (controller Resource) method, I added a parameter to receive the parent…
-
0
votes1
answer144
viewsQ: Laravel route accessible by two types of user
I have an application where I have two authenticated user types (common and administrator). I have a route where I pass the id of the state and return me a json with the cities of that state. It…
-
4
votes1
answer316
viewsQ: Format array of dates
I have an Laravel application with the following code: private function todosRegistros($id, $colunas = ['data', 'nivel']) { return Leitura::select($colunas)->where('estacao_id', $id); } public…
-
1
votes1
answer27
viewsQ: Disable button after redirect
I have the following situation: A screen (Tela1) where the user chooses the button referring to a Set (an entity of my program), he clicks and opens a registration form for that Set. By clicking…
-
0
votes2
answers49
viewsQ: Controller method getting wrong value in Laravel
A piece of my application, consists of the client logging in and from there registering some relevant information daily. When logging in, it drops to the screen to choose which capture it will log…
-
1
votes2
answers220
viewsA: Create route template in Laravel with Resource
I imagine that’s about what you want: <!--Esse é um exemplo do blade dos botões--> <a href="#" id='showBTN' class="btn btn-success openmodal" title="Visualizar"> <i class="fa…
-
2
votes1
answer32
viewsQ: Booleanbinding of multiple properties
I made the following structure so that when I make one of the components invisible, the others follow the same configuration. A.visibleProperty().bindBidirectional(B.visibleProperty());…
-
0
votes1
answer99
viewsQ: Uncover partition
I’m creating an application that will run from an external hard drive. I have been researching but I haven’t found a way without using too much gambiarra to find the partition where this hard drive…
-
0
votes2
answers641
viewsA: Exchange information between Javafx windows
I don’t have the example, but if you post the code of what you did I might be able to help you with what you want. I imagine that you are using FXML, a way that perhaps is simpler is instead of…
-
1
votes1
answer294
viewsQ: Javafx Pagination
I was playing with Javafx and stopped when I wanted to add paging to my small application. I have a listview filled (as can be seen in the image), when I click on an item, its information is shown…
-
10
votes1
answer732
viewsQ: Help with Javafx form
Hello, I imagine my doubt is simple but I haven’t found anything in the forums of life (probably because I don’t use the correct terms in the search). I am creating a form for students in Javafx…