skip to Main Content

How to add fullcallendar to a laravel app

I am trying to integrate fullcallendar in a laravel10 + Metronic app helpers.addVendors(['fullcalendar']); called from controller gives error: Undefined constant "AppHttpControllershelpers" CODE: <?php namespace AppHttpControllers; use AppModelsUser; use IlluminateHttpRequest; class CalendarController extends Controller { public function index() { helpers.addVendors(['fullcalendar']); return…

VIEW QUESTION

Saving records to database Laravel 10

I'm trying to save the data from the form. However, there is no record when I check the database side. I'm using Laravel 10 and mySQL v5.7. **Controller **store() public function store(Request $request) { $personnelRegistry = null; $personnerlRegistryId = (int)$request->input('personnelRegistryId',…

VIEW QUESTION

Call to a member function manages() on null – Laravel

resources / views / layouts / navigation.blade .php : 8 require in my home page Laravel <!-- resources/views/page.blade.php --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Front Page</title> </head> <body> <!-- Include the navigation menu --> @include('layouts.navigation') <!-- Your front page…

VIEW QUESTION
Back To Top
Search