10 lines
145 B
PHP
10 lines
145 B
PHP
|
@extends('layouts.master')
|
||
|
|
||
|
@section('title', 'About')
|
||
|
|
||
|
@section('header')
|
||
|
|
||
|
@section('content')
|
||
|
<p>This is the about content</p>
|
||
|
@endsection
|