15 lines
361 B
PHP
15 lines
361 B
PHP
@extends('layouts.app')
|
|
|
|
@section('page_title', 'Station Locator')
|
|
|
|
@section('content')
|
|
<div class="card" style="min-height: 500px;">
|
|
<div class="card-header">
|
|
<i class="fa-solid fa-location-dot" style="color:gray;"> Branches</i>
|
|
</div>
|
|
<div class="card-body">
|
|
<p>This is the Branches page content.</p>
|
|
</div>
|
|
</div>
|
|
@endsection
|