python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to call a function from another route in laravel php
im trying to call a function from another route in laravel php.
I have the route "welcome"
Route::get('/', function () {
return view('welcome');
});
where im calling this extends (sideb...
iconic404
Votes: 0
Answers: 1
Laravel If === statement working on localhost but not works on server
I'm searching and trying to fix this problem while 3 days but I can't did anything. I have a project coded with Laravel 8. I'm not new for this subject but my if statements working correctly on localh...
Galaksi
Votes: 0
Answers: 0
How to populate a laravel chart with data from database with apexchart?
In my controller I have this query :
$categories = DB::table('categories')
->select('type',DB::raw('COUNT(*) as count_type'))
->groupBy('type')
->orderBy('type','desc')
->...
Jon Rodrigo
Votes: 0
Answers: 1
Attempt to read property "nama" on int
im trying to get the latest data on database, im using this on my views :
@foreach ($shows as $s)
<tbody>
<tr>
<th scope="row">{{$loop-&...
Muhammad Fajri Firdaus
Votes: 0
Answers: 1