lots of interesting commonmark extensions at https://commonmark.thephpleague.com/2.4/extensions/overview/
17 lines
264 B
PHP
17 lines
264 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Photo;
|
|
use Illuminate\Http\Request;
|
|
|
|
class PhotoController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view('photos.index', [
|
|
'photos' => Photo::all()
|
|
]);
|
|
}
|
|
}
|