コンフィはオリーブオイルで低温調理した料理全般を言うみたいです。
味はちょっと薄かったです。
もっと塩を使うか、お肉を細かく切った方が良いかもしれないでです。
あと、どのように映っているか、調理中でも確認できるビデオカメラがあればいいですね。
カメラ、高いんだよなぁ・・・

バナークリックで応援よろしくお願いします。
We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.
The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ...
Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.
Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.
前回までの状況はこちら。
最新ソースはこちら。
https://github.com/takishita2nd/hotel-mng
バリデーション処理とは、フォームで入力した値が、正しいかどうかを確認する処理です。
現在は入力された値がそのままデータベースに入るようになってしまっているので、パラメータチェック処理を入れて、エラーを返せるようにします。
今回は実装量が少ない方法で行きます。
以下のコマンドを入力。
$ php artisan make:request ManagementRequest
そうすると、App/Http/Request/ManagementRequest.phpが作成されます。
その内容を修正します。
class ManagementRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array */ public function rules() { return [ 'name' => 'required|string', 'address' => 'required|string', 'phone' => 'required|digits:11', 'num' => 'required|numeric|digits_between:1,2', 'days' => 'required|numeric|digits_between:1,4', 'start_day' => 'required|date', ]; } }
authorize()の戻り値はtrueに変えます。
falseのままだとすべて認証エラーとなります。
rules()に各パラメータの確認内容を記入します。
こちらのサイトが参考になります。
https://qiita.com/fagai/items/9904409d3703ef6f79a2
あとは、コントローラーを変更します。
use App\Http\Requests\ManagementRequest; /** * 登録処理 */ public function store(ManagementRequest $request) /** * 更新処理 */ public function update(ManagementRequest $request)
確認を行うフォームのリスエスト処理の引数の型をManagementRequestに変更します。
これで、App/Http/Request/ManagementRequest.phpの内容が適用されます。
あとは、bladeにエラーを表示する領域を追加すればOK。
@if ($errors->any()) <div class="alert alert-danger"> <ul> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif
クリックで応援よろしくお願いします。