Posts by Tadeu RT • 84 points
6 posts
-
0
votes1
answer289
viewsQ: Error validating date with Carbon?
I’m doing a test and passing an invalid date for a Carbon method. $data = Carbon::createFromFormat('d/m/Y', '06/17/2010'); As you can see, the method creates from the pattern d/m/y (brazilian…
-
1
votes1
answer243
viewsA: Access the Laravel API route 5.7
The solution is simple. Try this: http://127.0.0.1:8000/api/api/dot/ But that question comes, why is that? The answer is also simple: If you look at the Provider that records the routes:…
-
1
votes1
answer179
viewsA: Codeigniter enter registration in bank
I figured out how to do this. It’s very simple. I decided to share it with you, because maybe there are more people with the same doubt. The class below as I mentioned earlier, when trying to make…
-
2
votes1
answer179
viewsQ: Codeigniter enter registration in bank
Hello, I work with Codeigniter 3. I have a question. We assume the model below: class Peca_model extends CI_Model { public $Id; public $Data_registro; public $Ativo; public $Nome; public function…
-
1
votes2
answers592
viewsA: How to remove from the index.php url in Codeigniter
Thanks to the solution proposed by Igor Cacerez, I was able to solve the problem. Just to reiterate, what led to the occurrence of the problem was the fact that I added it to mine. htaccess two…
codeigniter-3answered Tadeu RT 84 -
1
votes2
answers592
viewsQ: How to remove from the index.php url in Codeigniter
I have an application on my local server, I followed all the steps to have index.php removed from the url in codeigniter, on my local machine worked perfectly. Therefore, I put the application on…
codeigniter-3asked Tadeu RT 84