# Quick start

This page gives you a three step quick start to getting your data exposed through an OData API. Once you're up and running check out the rest of the docs!

# Step 1: Installation

Install Lodata into your Laravel application using Composer (opens new window)

composer require flat3/lodata
1

Now (re)start your app. The OData API endpoint will be available at: http://127.0.0.1:8000/odata/ (opens new window) (or whichever URL prefix your application normally runs on).

Accessing that endpoint in a browser or an API client such as Postman (opens new window) will show you the Service Document (opens new window) that describes the services available at this endpoint. This will show an empty array of services at the moment.

# Step 2: Discovery

The first thing we'll try is exposing the data managed by an Eloquent model. We can use auto-discovery to introspect the schema and find the available fields.

As we're just starting out we'll use the existing service provider at app/Providers/AppServiceProvider.php.

Open this file and add the following to the boot() method.

\Lodata::discover(\App\Models\User::class)
1

You can now access http://127.0.0.1:8000/odata/Users (opens new window) and see the users in your database. Note that the properties of the model have been discovered, and their types automatically detected.

Lodata uses the same casing and pluralisation approach as Laravel, and OData URLs are case-sensitive. Therefore, the User model is exposed as Users in the URL.

# Step 3: Try a query

OData has an extensive set of filtering, searching and sorting capabilities.

We'll exercise it with this request that returns the first three users that have email addresses ending in @gmail.com, sorted by recently created first, and we're only interested in the name, email and created_at properties:

http://127.0.0.1:8000/odata/Users?filter=endswith(email, '@gmail.com')&top=3&orderby=created_at desc&select=name,email,created_at (opens new window)

This might look a bit complex at first, but we'll go into more detail on the available query options later in this documentation.


Now you're up and running! There's a ton more you can do with OData, have a look through the rest of the docs to find out more...