27 lines
570 B
PHP
27 lines
570 B
PHP
@extends('layouts.master')
|
|
@section('page-title')
|
|
Admin | {{ $page_title }}
|
|
@endsection
|
|
@section('page-content')
|
|
<div class="container py-4">
|
|
|
|
<!-- <div class="alert alert-dark" role="alert">
|
|
This feature is still under development.
|
|
</div> -->
|
|
|
|
<div class="alert alert-success" role="alert">
|
|
<h4 class="alert-heading">Coming Soon !</h4>
|
|
<p>This feature is still under development</p>
|
|
<hr>
|
|
<p class="mb-0"><a href="{{ url('landing') }}" class="alert-link">Back to Landing Page </a>..</p>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@endsection
|
|
@section('page-js')
|
|
|
|
@endsection |