@extends('layout.container')
@section('title', 'Welcome to Master Page')
@section('content')
@php
$types = [
[
'mode' => 'code',
'name' => 'Code/Add Content',
'title' => 'Enter the content from PSD'
],
[
'mode' => 'editpage',
'name' => 'Edit page',
'title' => 'Edit Page to add images or change content'
],
[
'mode' => 'view',
'name' => 'View Page',
'title' => 'View the Landing Page'
],
[
'mode' => 'gethtml',
'name' => 'Get HTML',
'title' => 'Copy the code to upload at CMS'
],
[
'mode' => 'content',
'name' => 'Content Doc',
'title' => 'Copy the whole content to save in the Document'
],
[
'mode' => 'imagesheet',
'name' => 'Image Sheet',
'title' => 'Copy the whole content to save in the Document'
],
];
@endphp
@php
foreach($types as $i){
echo '
'.$i['name'].'';
}
@endphp
@endsection