Last active
April 4, 2019 21:43
-
-
Save devmeireles/bde4f3c6567e52616b4ea19905c393df to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Productos; | |
use Illuminate\Http\Request; | |
class ProductosController extends Controller{ | |
public function index(){ | |
$titulo = 'LaravelShop | Productos - Listar'; | |
// $productos = Productos::orderby('id', 'desc')->paginate(15); | |
$productos = Productos::paginate(1); | |
return view('admin.productos.index')->with([ | |
'titulo' => $titulo, | |
'productos' => $productos, | |
]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment