26 lines
494 B
PHP
26 lines
494 B
PHP
@extends('client.topCargo.layouts.layout')
|
|
|
|
@section('title', $article->title)
|
|
|
|
@section('content')
|
|
|
|
@switch($alias)
|
|
|
|
@case('about-us')
|
|
@include('client.topCargo.partials.about.about-us')
|
|
@break
|
|
|
|
@case('who-are-we')
|
|
@include('client.topCargo.partials.about.about-us')
|
|
@break
|
|
|
|
@case('message-from-md')
|
|
@include('client.topCargo.partials.about.message-from-md')
|
|
@break
|
|
|
|
@default
|
|
|
|
@endswitch
|
|
|
|
@endsection
|