Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 309 Bytes

starts-with-search.md

File metadata and controls

11 lines (9 loc) · 309 Bytes

Starts With Search

Starts with search feature allows the package to search our tables with records that starts with the given keyword. To enable the feature, just chain ->startsWithSearch() on your instance.

return datatables()
        ->eloquent($model)
		->startsWithSearch()
		->toJson();