patricksamson / laravel-5-snippets

Laravel 5 Snippets for Sublime Text
MIT License
111 stars 29 forks source link

DB:: inclusion? #14

Closed torrobinson closed 8 years ago

torrobinson commented 8 years ago

Hello,

It'd be nice to have DB:: (https://laravel.com/docs/5.0/database) added.

Thanks!

johnnymn commented 8 years ago

+1

patricksamson commented 8 years ago

Not sure how to integrate Fluent queries yet, but I`m on it!

patricksamson commented 8 years ago

I added some basic snippets in commit 31956c3 and version 1.2.8.

I will not add snippets for Fluent queries because they will end up being too complex to be useful. I mean, Snippets won't help for this :

DB::table('users')
            ->where('name', '=', 'John')
            ->orWhere(function ($query) {
                $query->where('votes', '>', 100)
                      ->where('title', '<>', 'Admin');
            })
            ->get();
torrobinson commented 8 years ago

Thanks!