@extends('site.layouts.app') @section('title', 'Shops') @section('content') Shops {{-- @csrf --}} Search Now @if (count($shops) > 0) @foreach ($shops as $shop) {{ $shop->name }} {{ $shop->address }} @endforeach @else No record found @endif @if ($shops->lastPage() > 1) « Previous @for ($i = 1; $i <= $shops->lastPage(); $i++) {{ $i }} @endfor » Next @endif @endsection