このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/resources/views/c_account/index.blade.php

18 行
457 B
PHP
Raw 通常表示 履歴

@extends('common.layout')
2021-10-18 18:15:53 +09:00
2021-12-21 15:44:41 +09:00
@section('title', 'KIKI子')
2021-10-18 18:15:53 +09:00
@php
$routers = ['meeting', 'parent', 'search', 'profile'];
foreach ($routers as $router) {
if(Request::is('c-account/'.$router.'*')) {
break;
}
}
@endphp
@section('content')
2022-01-04 17:44:38 +09:00
<input type="hidden" id="c_router" value="{{$router}}" />
<input type="hidden" id="child_image" value="{{ request()->session()->get('children')['image'] }}" />
2021-10-18 18:15:53 +09:00
@endsection