@extends('layouts.app') @section('title','Franchises') @section('content')

Find a franchise

@forelse($franchises as $franchise)

{{ $franchise->franchise_name }}

{{ $franchise->franchise_location }}, {{ $franchise->franchise_district }}, {{ $franchise->franchise_state }}

{{ $franchise->franchise_contact }}
{{ $franchise->franchise_email }}

@if(preg_match('/^https?:\/\//i',$franchise->franchise_googlelocation ?? ''))View location@endif
@empty

No matching franchises.

@endforelse
{{ $franchises->links() }}@endsection