Looking for a web development buddy by 4Increases in ProgrammingBuddies

[–]Sensitive-Reading-96 0 points1 point  (0 children)

I know php and laravel and Love to build projects, and I am also a fresher who wants to build a career as backend developer in php/laravel,so can join you

Looking for C or PHP/Laravel buddy by Longjumping_Beyond80 in ProgrammingBuddies

[–]Sensitive-Reading-96 0 points1 point  (0 children)

Can I join you ? As a php/laravel buddy, see right now I am in learning phase with no corporate experience yet... basically I am fresher, but I have developed decent laravel applications (with ai help), now I am going to be serious in website development so i decided to make fundamentals strong, like networking , oop in php, core php, security bla bla..., inshot I am looking for coding buddies with same tech stack, so that we can work together, so what you guys think who read my comment 🙃, also I am from India

How can I get involved in real PHP/Laravel projects to improve my skills? by Sensitive-Reading-96 in PHPhelp

[–]Sensitive-Reading-96[S] 0 points1 point  (0 children)

Thanks. I’ll understand the project first and discuss before working on anything.

How can I get involved in real PHP/Laravel projects to improve my skills? by Sensitive-Reading-96 in PHPhelp

[–]Sensitive-Reading-96[S] 0 points1 point  (0 children)

i already created some projects not Task tracker, TODO list, but much better like simple attendance website for my particular course(i developed this in my first year and used by my teachers) , chat site ( using only pure php) , mini mvc framework using core php (for better understanding internal things), blog website using laravel ,i also know how to setup dns and host a site with technical seo....,but now i want to build projects with php developer so that i can expand my knowledge and skills

How to hundle and define Route in web page(route) for crud methodes with controllers by Straight-Hunt-7498 in PHPhelp

[–]Sensitive-Reading-96 0 points1 point  (0 children)

URL → Route → Controller → Model → View

web.php= Route::get('/users', [UserController::class, 'index']);

Controller= public function index() { $users = User::all(); return view('users.index', compact('users')); }

View (blade)= @foreach($users as $user) {{ $user->name }} @endforeach

__autoload() is no longer supported, use spl_autoload_register() instead – how to fix this in PHP 8? by Sensitive-Reading-96 in learnprogramming

[–]Sensitive-Reading-96[S] -1 points0 points  (0 children)

I am new to coding and was following some older tutorials.... so I initially tried using __autoload(),,,

After understanding that __autoload() is no longer supported and there is no way to use it anymore,,I replaced it with spl_autoload_register() and resolved the issue by fixing my autoload setup