2023-08-14 14:33:53 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2023-08-15 15:05:51 -06:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2023-08-14 14:33:53 -06:00
|
|
|
use App\Models\Location;
|
|
|
|
|
|
|
|
class FrontIndexController extends Controller
|
|
|
|
{
|
|
|
|
public function start()
|
|
|
|
{
|
2023-08-16 14:03:06 -06:00
|
|
|
$locations = Location::where("active", true)->get();
|
2023-08-14 14:33:53 -06:00
|
|
|
$count = count($locations);
|
|
|
|
|
2023-08-15 15:05:51 -06:00
|
|
|
$terms = "no|agenda";
|
|
|
|
|
|
|
|
//$result = DB::select("SELECT * FROM searchlocations('$terms')");
|
|
|
|
|
2023-08-17 16:14:01 -06:00
|
|
|
return view('front.index', [
|
|
|
|
'count' => $count,
|
|
|
|
'title' => "The Bad Space"
|
|
|
|
]);
|
2023-08-14 14:33:53 -06:00
|
|
|
}
|
|
|
|
}
|