Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update readme.md
Update code formate
  • Loading branch information
AgheraSachin authored Sep 30, 2020
commit 0ac8613c0b9fadf3c8f1a253d71f17337224f5b1
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Or add the following to your composer.json's require section and `composer updat

```json
"require": {
"maddhatter/laravel-fullcalendar": "~1.0"
"maddhatter/laravel-fullcalendar": "~1.0"
}
```

Expand Down Expand Up @@ -55,7 +55,7 @@ $event = \Calendar::event(
'2015-02-14', //end time, must be a DateTime object or valid DateTime format (http://bit.ly/1z7QWbg),
1, //optional event ID
[
'url' => 'http://full-calendar.io'
'url' => 'http://full-calendar.io'
]
);
```
Expand All @@ -75,8 +75,8 @@ class EventModel extends Eloquent implements \MaddHatter\LaravelFullcalendar\Eve
* @return int
*/
public function getId() {
return $this->id;
}
return $this->id;
}

/**
* Get the event's title
Expand Down