Advertisement
Guest User

Untitled

a guest
Aug 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App;
  4.  
  5. use Illuminate\Support\Facades\DB;
  6.  
  7. class Usuario
  8. {
  9.     public function all()
  10.     {
  11.         return DB::select('select * from usuarios where usuario_estado "borrado"');
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement