Is it possible to cache relationships with the remember function? $screen->Texts()->with('Tex...
Is it possible to reference a full namespace? I mean using: use MyApp\Models; (this is not working...
I just started using laravel, and I am trying some code. $candidate1 = ot_Candidate::where('id', '='...
You have to create a middleware for that: <?php namespace App\Http\Middleware; use Closure; cla...
You have to do i like this: $doc = Doctor::find(1); dd($doc->lessons()->get());
Both. With migrations you create the database tables (with the necessary foreigns keys). In the mode...
The Laravel portal for problem solving, knowledge sharing and community building.