middleware('auth:sanctum') ->except(['store', 'destroyByEmail']); } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { // } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param \App\Models\Attachment $attachment * @return \Illuminate\Http\Response */ public function show(Attachment $attachment) { // } /** * Show the form for editing the specified resource. * * @param \App\Models\Attachment $attachment * @return \Illuminate\Http\Response */ public function edit(Attachment $attachment) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\Attachment $attachment * @return \Illuminate\Http\Response */ public function update(Request $request, Attachment $attachment) { // } /** * Remove the specified resource from storage. * * @param \App\Models\Attachment $attachment * @return \Illuminate\Http\Response */ public function destroy(Attachment $attachment) { // } }