You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TheBadSpace/resources/views/back/locations.blade.php

21 lines
461 B
PHTML

@extends('frame')
@section('title', 'Den | Location Admin')
@section('main-content')
@parent
<section>
<article>
<h2>Location Listings</h2>
@if($action === "add")
@include('forms.add-location')
@elseif($action === "edit")
EDIT LOCATION
@elseif($action === "bulk-add")
ADD MANY LOCATIONS
@else
START
@endif
</article>
</section>
@endsection