clock  Mon - Sun 8.00 AM - 8.00 PM
fb
instagram
play store
pinterest

Laravel Fullcalendar Example

writter  Sumit Dey Sarkar
Date  01 Apr 2023
Language  Laravel
Laravel Fullcalendar Example

Laravel Fullcalendar Example

In this tutorial we will see Laravel Fullcalendar Example.

Laravel Fullcalendar Example

A calendar UI component for web applications is offered by the JavaScript package called FullCalendar. A PHP web framework called Laravel makes it simple and quick for programmers to create web apps. In this tutorial, we will create a simple Laravel FullCalendar example that displays a calendar with events retrieved from a database.

 

Laravel Fullcalendar Example

Follow the below steps -

 

Step 1 - Setup Laravel first, Make sure Laravel is first installed on your PC. To install Laravel, follow the official documentation to install Laravel.

 

Step 2 - Using the following command, produce a new Laravel project

laravel new laravel-fullcalendar-example

 

Step 3 -  install FullCalendar using npm

npm install @fullcalendar/core @fullcalendar/daygrid @fullcalendar/timegrid

 

Step 4 - Create a new migration Create a new migration to create a table for storing events using the following command

php artisan make:migration create_events_table --create=events

 

Then add the following code to the up method of the migration

public function up()
{
    Schema::create('events', function (Blueprint $table) {
        $table->id();
        $table->string('title');
        $table->dateTime('start');
        $table->dateTime('end')->nullable();
        $table->timestamps();
    });
}

 

Step 5 - Migrate the database using the following command

php artisan migrate

 

Step 6 - Create a new model for the events table using below command:

php artisan make:model Event

 

Then add the following code to the model

class Event extends Model
{
    protected $fillable = ['title', 'start', 'end'];
}

 

Step 7 - Create a new controller for the FullCalendar example using the below command

php artisan make:controller FullCalendarController

 

Then add the following code to the controller

use App\Models\Event;

class FullCalendarController extends Controller
{
    public function index()
    {
        $events = Event::all();

        $formattedEvents = $events->map(function ($event) {
            return [
                'title' => $event->title,
                'start' => $event->start,
                'end' => $event->end,
            ];
        });

        return view('fullcalendar', compact('formattedEvents'));
    }
}

 

Step 8 - Create a new route Create a new route for the FullCalendar example in the web.php file

Route::get('/fullcalendar', [FullCalendarController::class, 'index']);

 

Step 9 - Create a new view Create a new view for the FullCalendar example using the following command

php artisan make:view fullcalendar

 

Then add the following code to the view

<!DOCTYPE html>
<html>
<head>
    <meta charset='utf-8' />
    <meta name='viewport' content='width=device-width, initial-scale=1' />
    <title>FullCalendar Example</title>
    <link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.10.2/fullcalendar.min.css' />
</head>
<body>
    <div id='calendar'></div>

    <script src='https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js'></script>
    <script src='https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.10.2/fullcalendar.min.js'></script>
    <script>
    document.addEventListener('DOMContentLoaded', function() {
    var calendarEl = document.getElementById('calendar');

    var calendar = new FullCalendar.Calendar(calendarEl, {
        plugins: [ 'dayGrid', 'timeGrid' ],
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'dayGridMonth,timeGridWeek,timeGridDay'
        },
        events: <?php echo json_encode($formattedEvents) ?>,
        eventClick: function(info) {
            console.log(info.event);
        }
    });

    calendar.render();
});
    </script>

</body>
</html>

This code creates a new FullCalendar instance and sets the plugin options, header options, and event data. It also sets up an event listener for when an event is clicked.

 

Step 10 - Now run the application

php artisan serve

 

Open http://localhost:8000/fullcalendar in your browser.

Now , You have successfully created a simple Laravel FullCalendar example that displays events retrieved from a database.

Comments 0

Leave a comment

Coursera, Codeacademy, Udacity, W3Schools, Udemy, Alison, TheNewBoston, edX, P.S.Codewars,Freecodecamp, Managing technical debt blog, Scrimba, Codepen, Codepen/challenges, The Odin Project, htmlreference.​io, cssreference.​io, Frontend Mentor, Dev Challenges, MDN, Code Mentor, Coding Dojo, CSS Battle, Codier, Ace Frontend, Can I Use, CSS Tricks, 30 Seconds of Code,tutorialspoint, Neumorphism, Shaddows Brumm, Fancy Border Radius, Glow Generator, Clothoid Corners, Glassmorphism, Clipy, CSS Filters, Base64 Image, Quantity Queries, Animations, Cubic-Bezier, Keyframes, Wait Animate, Transition.Style, graphic design, web design, website design, website builder, web developer, web designer, webdesign, ecommerce website, web design company, website creator, website designer, responsive web design, web development company, best website design, web design software, web page design, build a website, web developer salary, design website, web design courses, how to design a website, web design inspiration, website layout, web designer salary, web application development, ecommerce website design, web agency, software development company, web design tutorial, web programming, design company, website design templates, what is web designing, web developer jobs, website developer, web design agency, freelance web developer, web design services, freelance web designer, graphic design websites, web solutions, ecommerce website development, free website design, web development courses, webdev, web developers, web development tools, website design services, developpeur web, web design london, website design ideas, web designing and programming, design a website, web design and development, web dev, web development services, homepage design, best designed websites, cheap website design, learn web design, web design templates, web design tools, web design jobs, website design inspiration, web design india, flash website, website developers, designer websites, website services, website design cost, good website design, site design, simple website design, cool website designs, modern website design, graphic designer websites, webcode, best web design software, website making, free web design software, mobile website design, learn web development, front end web developer, how to become a web developer, web developer portfolio, web development company in india, python web development, web development tutorial, website company, website design and development, web company, webdesigning, professional website design, affordable web design, best web design company, creative web design, top website designs, website design pricing, web developer tools, how to develop a website