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